body{font-family:system-ui,Arial;margin:0;background:#f6f7fb;color:#111}
.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 16px;
  background:#243447;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.brand{font-weight:700}
.container{padding:16px}
.btn{display:inline-block;padding:8px 12px;border:1px solid #ddd;background:#fff;border-radius:10px;cursor:pointer;text-decoration:none;color:#111}
.btn.primary{background:#1a73e8;color:#fff;border-color:#1a73e8}
.btn.small{padding:6px 10px;border-radius:8px}
.btn.link{border:none;background:transparent;color:#1a73e8;padding:8px 0}
.card{background:#fff;border:1px solid #eee;border-radius:14px;padding:16px}
.login{max-width:380px;margin:30px auto}
label{display:block;margin-top:10px;font-size:14px}
input,select{width:100%;padding:10px;border:1px solid #ddd;border-radius:10px;margin-top:6px;background:#fff}
.alert{background:#ffe6e6;border:1px solid #ffb3b3;padding:10px;border-radius:10px;margin:10px 0}
.grid-3{display:grid;grid-template-columns: 250px 1fr 440px;gap:14px}
.panel{background:#fff;border:1px solid #eee;border-radius:14px;padding:14px}
.muted{color:#666;font-size:13px}
.stats{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:10px}
.stat{border:1px dashed #ddd;border-radius:12px;padding:10px;display:flex;justify-content:space-between}
.pedido{border:1px solid #eee;border-radius:14px;padding:12px;margin-top:10px}
.pedido-head{display:flex;justify-content:space-between;align-items:flex-start}
.money{font-weight:700}
.tag{display:inline-block;margin-left:8px;padding:2px 8px;border-radius:999px;background:#f0f0f0;font-size:12px}
.estado-form{display:flex;gap:8px;align-items:center;margin-top:10px}
#detailContent .box{border:1px solid #eee;border-radius:12px;padding:10px;margin-top:10px}
.tag { 
  display:inline-block;
  padding:2px 8px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}

.tag.st-nuevo { background:#e8f0ff; color:#1d4ed8; }
.tag.st-aceptado { background:#e9fbe9; color:#15803d; }
.tag.st-en_camino { background:#fff7e6; color:#b45309; }
.tag.st-entregado { background:#f3f4f6; color:#374151; }
.tag.st-cancelado { background:#ffe8e8; color:#b91c1c; }

.pedido.st-nuevo { border-left: 5px solid #1d4ed8; }
.pedido.st-aceptado { border-left: 5px solid #15803d; }
.pedido.st-en_camino { border-left: 5px solid #b45309; }
.pedido.st-entregado { border-left: 5px solid #374151; }
.pedido.st-cancelado { border-left: 5px solid #b91c1c; }

.tabs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}

.tab{
  border:1px solid #ddd;
  background:#fff;
  padding:6px 10px;
  border-radius:999px;
  cursor:pointer;
  font-weight:600;
  font-size:13px;
}

.tab.active{
  border-color:#1a73e8;
  color:#1a73e8;
}

/* Tabs base */
.tabs { display:flex; flex-wrap:wrap; gap:6px; }
.tab { border:1px solid #ddd; background:#fff; padding:6px 10px; border-radius:8px; cursor:pointer; }
.tab.active { font-weight:700; }

/* Colores por estado (solo cuando está activo) */
.tab.active[data-filter="NUEVO"]      { background:#e8f0ff; border-color:#1d4ed8; color:#1d4ed8; }
.tab.active[data-filter="ACEPTADO"]   { background:#e9fbe9; border-color:#15803d; color:#15803d; }
.tab.active[data-filter="EN_CAMINO"]  { background:#fff7e6; border-color:#b45309; color:#b45309; }
.tab.active[data-filter="ENTREGADO"]  { background:#f3f4f6; border-color:#374151; color:#374151; }
.tab.active[data-filter="CANCELADO"]  { background:#ffe8e8; border-color:#b91c1c; color:#b91c1c; }

/* "TODOS" activo en neutro */
.tab.active[data-filter="TODOS"]      { background:#111; border-color:#111; color:#fff; }

/* Panel detalle fijo mientras haces scroll en escritorio */
#detailPanel{
  position: sticky;
  top: 12px;              /* distancia desde arriba */
  align-self: start;      /* importante en grid */
  max-height: calc(100vh - 24px);
  overflow: auto;         /* scroll dentro del panel */
}

@media (max-width: 900px){
  .grid-3{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #detailPanel{
    position: static;     /* en celular ya no sticky */
    max-height: none;
    overflow: visible;
  }
}


@keyframes slideIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.new-order-badge {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ff3b3b;
  color: white;
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 99999; /* IMPORTANTÍSIMO */
  min-width: 220px;
  animation: slideIn 0.3s ease;
}

.new-order-badge button{
  border: 0;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 700;
}

.new-order-badge .x{
  background: transparent;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  padding: 4px 8px;
  opacity: .85;
}

.new-order-badge .go{
  background: #22c55e;
  color: #0b1220;
}

.new-order-badge small{
  display:block;
  font-weight: 500;
  opacity: .9;
}
@keyframes slideIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.muted{
  font-size:12px;
  color:#888;
}
.kpi-row{
  display:grid !important;
  grid-template-columns: repeat(4, minmax(180px, 1fr)) !important;
  gap:14px !important;
  margin:0 0 14px 0 !important;
}

.kpi-card{
  background:#fff;
  border-radius:12px;
  padding:12px 16px;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
  border-left:5px solid #d1d5db;
  min-height:72px;
}

.kpi-title{
  font-size:13px;
  color:#6b7280;
  margin-bottom:8px;
  font-weight:600;
}

.kpi-value{
  font-size:30px;
  font-weight:800;
  color:#111827;
  line-height:1;
}

.kpi-blue{ border-left-color:#3b82f6; }
.kpi-green{ border-left-color:#10b981; }
.kpi-orange{ border-left-color:#f59e0b; }
.kpi-red{ border-left-color:#ef4444; }

@media (max-width: 1000px){
  .kpi-row{
    grid-template-columns: repeat(2, minmax(180px, 1fr)) !important;
  }
}

@media (max-width: 600px){
  .kpi-row{
    grid-template-columns: 1fr !important;
  }

  .kpi-value{
    font-size:24px;
  }
}
.pedido.pedido-active{
  border: 2px solid #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
  background: #f8fbff;
}

.pedido{
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.cliente-badge{
  display:inline-block;
  margin-left:8px;
  padding:2px 8px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  vertical-align:middle;
}

.cb-nuevo{
  background:#eef2ff;
  color:#4338ca;
}

.cb-frecuente{
  background:#ecfdf5;
  color:#047857;
}
.detail-wrap{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.detail-section{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:10px 12px;
}

.detail-title{
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:#6b7280;
  margin-bottom:6px;
}

.detail-section div{
  line-height:1.35;
}

.detail-total{
  font-size:18px;
  font-weight:700;
  color:#111827;
  margin:6px 0;
}

.detail-state{
  display:inline-block;
  padding:2px 8px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
}

.detail-state-entregado{
  background:#ecfdf5;
  color:#047857;
}

.detail-state-cancelado{
  background:#fef2f2;
  color:#dc2626;
}

.detail-state-nuevo{
  background:#eff6ff;
  color:#2563eb;
}

.detail-state-aceptado{
  background:#fff7ed;
  color:#ea580c;
}

.detail-state-en_camino{
  background:#f5f3ff;
  color:#7c3aed;
}

.detail-items{
  margin:0;
  padding-left:18px;
  line-height:1.35;
}

.detail-items li{
  margin-bottom:2px;
}
.detail-wa-btn{
  display:inline-block;
  background:#25D366;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  padding:8px 12px;
  border-radius:10px;
  font-size:13px;
}

.detail-wa-btn:hover{
  opacity:.92;
}
.obs-line{
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #fffaf0;
  border-left: 3px solid #d6a84a;
  font-size: 13px;
  color: #333;
  display: inline-block;
  max-width: 100%;
}
.detail-note{
  margin-top: 6px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fffaf0;
  border-left: 3px solid #d6a84a;
  color: #333;
  font-size: 14px;
}
.time-ago.ta-warn{
  background: #fff3b0;
  color: #7a5d00;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 600;
}

.time-ago.ta-alert{
  background: #ffd6a5;
  color: #8a3b00;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 600;
}

.time-ago.ta-danger{
  background: #ffb3b3;
  color: #8b0000;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 700;
}
.obs-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.obs-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

.obs-modal-card{
  position: relative;
  z-index: 2;
  width: min(92vw, 460px);
  margin: 10vh auto 0 auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  padding: 18px;
}

.obs-modal-title{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

#obsTextarea{
  width: 100%;
  min-height: 110px;
  resize: vertical;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #d8dde6;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
}

.obs-modal-footer{
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.obs-modal-actions{
  display: flex;
  gap: 8px;
}

.btn-obs{
  margin-left: 8px;
}
.detail-ticket-btn{
  display:inline-block;
  background:#fff;
  color:#2563eb;
  text-decoration:none;
  padding:10px 14px;
  border-radius:10px;
  font-weight:600;
  border:1px solid #cfe0ff;
}

.detail-ticket-btn:hover{
  background:#f5f9ff;
}
.detail-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:8px;
}
.detail-inline-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  flex-wrap:wrap;
}
.detail-inline-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  flex-wrap:wrap;
}
#detailPanel h3{
  margin: 0 0 6px 0;
}

#detailPanel > .muted{
  margin-bottom: 8px;
  display: block;
}
#filtersPanel{
  position: sticky;
  top: 12px;
  align-self: start;
  max-height: calc(100vh - 24px);
  overflow: auto;
}
@media (max-width: 900px){
  #filtersPanel{
    position: static;
    max-height: none;
    overflow: visible;
  }
}
.service-banner{
  border-radius:10px;
  padding:8px 12px;
  margin:0 0 12px 0;
  font-size:13px;
  line-height:1.35;
  border:1px solid #dbeafe;
  background:#f8fbff;
}

.service-banner-main{
  font-weight:500;
}

.service-banner-note{
  margin-top:3px;
  font-size:12px;
}
.topbar .btn{
  min-width: 86px;
  text-align: center;
  padding: 8px 14px;
}
.service-banner.svc-por-vencer{
  background:#fffdf7;
  border-color:#f5deb3;
  color:#374151;
}

.service-banner.svc-por-vencer .service-banner-note{
  color:#b45309;
  font-weight:600;
}
.service-banner.svc-suspendido{
  background:#fff7f7;
  border-color:#f5c2c7;
  color:#374151;
}

.service-banner.svc-suspendido .service-banner-note{
  color:#b91c1c;
  font-weight:700;
}
.pedido-actions{
  margin-top: 14px;
}


.pedido-action-main{
  flex:1;
  min-width:220px;
}

.pedido-action-label{
  display:block;
  font-size:12px;
  font-weight:600;
  color:#6b7280;
  margin-bottom:4px;
}

.pedido-action-inline{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:10px;
  flex-wrap:wrap;
}

.pedido-action-inline:first-child{
  margin-top:0;
}

.pedido-inline-select{
  flex:1;
  min-width:220px;
}

.pedido-action-inline .msg{
  margin-left:6px;
  font-size:12px;
}

.pedido-inline-label{
  min-width:88px;
  font-size:13px;
  font-weight:700;
  color:#64748b;
}
.pedido-action-side{
  display:flex;
  align-items:end;
}

.pedido-action-row select{
  width:100%;
}

.pedido-links{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:12px;
  flex-wrap:wrap;
}

.pedido-mini{
  line-height:1.45;
}

.pedido .btn.link{
  padding-left:0;
  padding-right:0;
}
.pedido-actions{
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fafafa;
}

.pedido-action-row{
  display:flex;
  align-items:end;
  gap:10px;
  margin-top:8px;
  flex-wrap:wrap;
}

.pedido-action-row:first-child{
  margin-top:0;
}

.pedido-action-main{
  flex:1;
  min-width:220px;
}

.pedido-action-label{
  display:block;
  font-size:12px;
  font-weight:700;
  color:#64748b;
  margin-bottom:2px;
  letter-spacing:.2px;
  line-height:1.1;
}

.pedido-action-side{
  display:flex;
  align-items:end;
}

.pedido-action-row select{
  width:100%;
}

.pedido-links{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:12px;
  flex-wrap:wrap;
}

.pedido-mini{
  line-height:1.5;
}

.moto-pill{
  display:inline-block;
  padding:2px 8px;
  border-radius:999px;
  background:#eefbf3;
  color:#15803d;
  font-weight:600;
  font-size:13px;
}

.moto-empty{
  display:inline-block;
  padding:2px 8px;
  border-radius:999px;
  background:#f3f4f6;
  color:#6b7280;
  font-weight:500;
  font-size:13px;
}
:root {
  --zacek-green: #0b8f5a;
  --zacek-green-dark: #066a43;
  --zacek-dark: #12263a;
  --zacek-text: #111827;
  --zacek-muted: #6b7280;
  --zacek-border: #d9dee3;
  --zacek-bg: #f5f7fa;
  --zacek-white: #ffffff;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--zacek-bg);
  color: var(--zacek-text);
}

.topbar {
  background: linear-gradient(90deg, #0f2233, #12263a);
  color: #fff;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}

.right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user {
  color: #fff;
  font-weight: 600;
}

.topbar-btn,
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: 0.2s ease;
  cursor: pointer;
}

.topbar-btn:hover {
  background: rgba(255,255,255,0.14);
}

.container {
  padding: 24px;
  box-sizing: border-box;
}

/* LOGIN */
.login-page {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 80%, rgba(11,143,90,0.05), transparent 22%),
    radial-gradient(circle at 85% 25%, rgba(11,143,90,0.06), transparent 16%),
    linear-gradient(180deg, #f8fafb 0%, #f2f5f7 100%);
}

/* ondas suaves de fondo */
.login-page::before,
.login-page::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 50%;
  pointer-events: none;
}

.login-page::before {
  width: 1200px;
  height: 420px;
  background: rgba(18, 38, 58, 0.04);
  bottom: -220px;
  left: -220px;
}

.login-page::after {
  width: 1100px;
  height: 360px;
  background: rgba(255, 255, 255, 0.55);
  bottom: -170px;
  right: -180px;
}

.login-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  border: 1px solid #e8edf2;
  border-radius: 18px;
  padding: 34px 34px 28px;
  box-shadow: 0 18px 45px rgba(18, 38, 58, 0.10);
  box-sizing: border-box;
}

.login-subtitle-main {
  margin: 0 0 22px;
  text-align: center;
  color: #667085;
  font-size: 15px;
  font-weight: 500;
}

.login-logo-wrap {
  text-align: center;
  margin-bottom: 10px;
}

.login-logo {
  max-width: 170px;
  width: 100%;
  height: auto;
}

.login-card h2 {
  margin: 0 0 8px;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
}

.login-subtitle {
  margin: 0 0 24px;
  text-align: center;
  color: #667085;
  font-size: 15px;
}

.login-form label {
  display: block;
  font-weight: 700;
  margin: 16px 0 8px;
  color: #1f2937;
}

.login-form input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid #d8dee6;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  background: #fff;
  transition: all .2s ease;
}

.login-form input:focus {
  border-color: #0b8f5a;
  box-shadow: 0 0 0 3px rgba(11, 143, 90, 0.10);
}

.btn-login {
  width: 100%;
  margin-top: 20px;
  height: 48px;
  border: none;
  border-radius: 12px;
  background: #0b8f5a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.btn-login:hover {
  background: #087349;
}

.alert {
  background: #fff1f2;
  color: #b42318;
  border: 1px solid #fecdd3;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 14px;
}

.login-footer-note {
  text-align: center;
  margin-top: 18px;
  color: #667085;
  font-size: 14px;
  border-top: 1px solid #edf1f5;
  padding-top: 16px;
}

.login-brand-message {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #0b8f5a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-align: center;
}

.login-brand-message span {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: #0b8f5a;
  border-radius: 999px;
}

/* ==============================
   ZACEK - HEADER
================================= */

.zacek-topbar {
  min-height: 58px;
  padding: 0 24px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5eaf0;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}
.zacek-brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.zacek-header-logo {
  height: 42px !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.zacek-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.zacek-user {
  color: #ffffff;
  font-weight: 600;
  margin-right: 8px;
}

.zacek-user {
  color: #0f172a;
  font-weight: 700;
}

.zacek-topbar-btn {
  background: #0b8f5a;
  color: #ffffff;
  border: 1px solid #0b8f5a;
  padding: 9px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.zacek-topbar-btn:hover {
  background: #087349;
}
/* ==============================
   FIX SOLO CELULAR - ZACEK
================================= */
@media (max-width: 768px) {

  html,
  body {
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .zacek-topbar {
    min-height: 54px !important;
    height: 54px !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .zacek-brand,
  .zacek-brand-link {
    display: inline-flex !important;
    align-items: center !important;
    max-width: 170px !important;
    height: 54px !important;
    overflow: hidden !important;
  }

  .zacek-header-logo {
    height: 34px !important;
    max-height: 34px !important;
    width: auto !important;
    max-width: 160px !important;
    object-fit: contain !important;
    display: block !important;
  }

  .zacek-topbar-right {
    gap: 6px !important;
  }

  .zacek-user {
    font-size: 12px !important;
    max-width: 90px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
  }

  .zacek-topbar-btn {
    padding: 6px 10px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
    min-width: auto !important;
  }

  .container {
    padding: 10px !important;
    box-sizing: border-box !important;
  }

  .login-page {
    min-height: calc(100vh - 54px) !important;
    padding: 16px 12px !important;
    align-items: flex-start !important;
    overflow-x: hidden !important;
  }

  .login-card {
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    padding: 20px 16px 18px !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
  }

  .login-logo-wrap {
    margin-bottom: 8px !important;
    text-align: center !important;
  }

  .login-logo {
    width: 125px !important;
    max-width: 125px !important;
    height: auto !important;
    display: inline-block !important;
    object-fit: contain !important;
  }

  .login-brand-message {
    font-size: 10px !important;
    letter-spacing: 1.2px !important;
    gap: 7px !important;
    margin: 0 0 8px !important;
    line-height: 1.3 !important;
  }

  .login-brand-message span {
    width: 18px !important;
    height: 2px !important;
  }

  .login-subtitle-main {
    font-size: 14px !important;
    margin: 0 0 14px !important;
  }

  .login-form input {
    height: 44px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
  }

  .btn-login {
    height: 44px !important;
    font-size: 15px !important;
    border-radius: 10px !important;
  }

  .login-footer-note {
    font-size: 12px !important;
    margin-top: 14px !important;
    padding-top: 12px !important;
  }
}

.cliente-switch-form{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.cliente-switch-form{
  display:flex;
  flex-direction:column;
  gap:8px;
}