:root {
  --bg: #0f1419;
  --surface: #1a2332;
  --surface2: #243044;
  --border: #2d3a4f;
  --text: #e8edf4;
  --muted: #8b9cb3;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --success: #22c55e;
  --error: #ef4444;
  --warning: #eab308;
  --info: #3b82f6;
  --radius: 10px;
  --font: "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

.layout {
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100dvh;
  overflow: hidden;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.topbar {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface);
  flex-shrink: 0;
  z-index: 800;
}

.sidebar {
  width: 260px;
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 1.25rem;
  flex-shrink: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  max-height: 100dvh;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.sidebar::-webkit-scrollbar {
  width: 5px;
}

.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 999px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

.sidebar::-webkit-scrollbar-corner {
  background: transparent;
}

.sidebar .brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.sidebar .brand-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.sucursal-context-bar {
  padding: 0 0.85rem 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.5rem;
}

.sucursal-switch-form {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.sucursal-switch-form label {
  font-size: 0.85rem;
  margin: 0;
}

.sucursal-switch-form select {
  flex: 1;
  min-width: 0;
  font-size: 0.78rem;
  padding: 0.25rem 0.4rem;
}

.sucursal-context-label {
  display: block;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  padding: 0.15rem 0;
}

dialog.modal-dialog {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--surface);
  color: var(--text);
  max-width: 420px;
}
dialog.modal-dialog::backdrop {
  background: rgba(0,0,0,0.55);
}

.nav-group { margin-bottom: 1.25rem; }
.nav-group-title {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
  transition: background 0.15s, color 0.15s;
}

.nav-link:hover {
  background: var(--surface2);
  color: var(--text);
}

.nav-link.active {
  background: var(--surface2);
  color: var(--accent);
  font-weight: 600;
}

.nav-badge {
  display: inline-flex;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--error);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  margin-left: 0.35rem;
  vertical-align: middle;
}

.nav-badge.hidden {
  display: none;
}

.topbar-start {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1;
}

.topbar-end {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sidebar-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface2);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
}

.sidebar-toggle-icon {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 900;
  border: none;
  padding: 0;
  cursor: pointer;
}

body.sidebar-open {
  overflow: hidden;
}

body.sidebar-open .sidebar-overlay {
  display: block;
}

.content {
  padding: 1.5rem;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* Contenedor de scroll horizontal para tablas anchas */
.table-responsive {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.table-responsive > table {
  width: max-content;
  min-width: 100%;
}

.card--table {
  overflow: visible;
}

.card--table .table-responsive {
  margin: 0 -0.35rem;
  padding: 0 0.35rem;
}

.product-cell {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 200px;
}

.product-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface2);
  padding: 0;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-thumb-ph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  cursor: default;
}

.product-cell-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.product-cell-code {
  font-size: 0.72rem;
  color: var(--muted);
  font-family: ui-monospace, monospace;
}

.product-cell-name {
  font-size: 0.9rem;
  line-height: 1.25;
}

body.lightbox-open { overflow: hidden; }

.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.img-lightbox[hidden] { display: none !important; }

.img-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  border: none;
  cursor: pointer;
}

.img-lightbox-panel {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 520px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img-lightbox-panel img {
  max-width: 100%;
  max-height: calc(90vh - 3rem);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.img-lightbox-close {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.img-lightbox-caption {
  margin: 0.65rem 0 0;
  text-align: center;
  color: #e8edf4;
  font-size: 0.9rem;
}

.page-title { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.25rem; }
.page-subtitle { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.grid { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .sidebar-toggle { display: inline-flex; }
  .sidebar {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(280px, 88vw);
    z-index: 950;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.35);
  }
  body.sidebar-open .sidebar {
    transform: translateX(0);
  }
  html, body { max-width: 100vw; }
  .main { max-width: 100vw; min-width: 0; }
  .content {
    padding: 0.75rem;
    padding-bottom: 0.75rem;
    min-width: 0;
  }
  body.has-mobile-bottom-nav .content {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
  }
  .topbar { flex-wrap: wrap; padding: 0.65rem 0.75rem; }
  .topbar-end { width: 100%; justify-content: space-between; font-size: 0.8rem; }
  .topbar-end .btn-sm { padding: 0.35rem 0.5rem; font-size: 0.75rem; }
  .page-title { font-size: 1.25rem; }
  .page-subtitle { font-size: 0.85rem; margin-bottom: 1rem; }
  .card { padding: 1rem; min-width: 0; }
  .table-responsive > table { min-width: 640px; }
  .module-layout-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .module-layout-stack > .card {
    overflow-x: visible;
  }
  .pedido-header {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }
  .pedido-header > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  .pedido-header .btn { width: 100%; justify-content: center; }
  .filters-stack .grid-3,
  .filters-stack .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
  .actions { gap: 0.5rem; }
  .actions .form-control { min-width: 0; flex: 1 1 100%; }
  .actions label { width: 100%; font-size: 0.8rem; }
  .stat-value { font-size: 1.45rem; }
  .pedido-header { flex-direction: column; }
  .pedido-header .actions { width: 100%; gap: 0.35rem; }
  .pedido-header .actions .btn { flex: 1 1 auto; justify-content: center; min-width: 0; }
  .mapa-container { overflow-x: auto; }
  .mapa-mesas { min-height: 260px; min-width: 100%; }
  .mesero-topbar { flex-direction: column; }
  .mesero-topbar .actions { width: 100%; flex-wrap: wrap; }
  .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; }
  .table-responsive table { min-width: 520px; }
  .historial-table { min-width: 0 !important; width: 100%; }
  .historial-table th:nth-child(n+4),
  .historial-table td:nth-child(n+4) { white-space: nowrap; }
  .pwa-topbar-btn { display: inline-flex !important; }
  img, video, canvas, svg { max-width: 100%; height: auto; }
}

.pwa-topbar-btn { display: none; }

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 900px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 850;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 0.35rem 0 calc(0.35rem + env(safe-area-inset-bottom));
    justify-content: space-around;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
  }
  .mobile-bottom-nav a {
    flex: 1;
    text-align: center;
    padding: 0.45rem 0.2rem;
    font-size: 0.68rem;
    color: var(--muted);
    text-decoration: none;
    line-height: 1.2;
  }
  .mobile-bottom-nav a.active { color: var(--accent); font-weight: 600; }
  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
  }
  .mobile-nav-icon {
    width: 22px;
    height: 22px;
    display: block;
  }
  .pwa-install-banner.visible { bottom: 3.5rem; }
  .mesero-audio-btn { bottom: calc(4.5rem + env(safe-area-inset-bottom)); }
  .mesero-toast { bottom: calc(4.5rem + env(safe-area-inset-bottom)); }
}

.stat-card {
  background: var(--surface2);
  border-radius: var(--radius);
  padding: 1rem;
}

.stat-value { font-size: 1.75rem; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 0.8rem; color: var(--muted); }

table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
th, td { padding: 0.65rem 0.75rem; text-align: left; border-bottom: 1px solid var(--border); }
th { color: var(--muted); font-weight: 500; font-size: 0.75rem; text-transform: uppercase; }
tr:hover td { background: var(--surface2); }

.badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-bar { background: #1e3a5f; color: #93c5fd; }
.badge-cocina { background: #3b2f1e; color: #fcd34d; }
.badge-parrilla { background: #3b1e1e; color: #fca5a5; }
.badge-alerta { background: #3b1e1e; color: var(--error); }
.badge-ok { background: #1e3b2f; color: var(--success); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: var(--accent-hover); color: #000; }
.btn-secondary { background: var(--surface2); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--border); color: var(--text); }
.btn-danger { background: #7f1d1d; color: #fecaca; border: 1px solid #991b1b; }
.btn-danger:hover { background: #991b1b; color: #fff; }
.btn-sm { padding: 0.3rem 0.65rem; font-size: 0.8rem; }
.actions-cell { white-space: nowrap; display: flex; gap: 0.35rem; flex-wrap: wrap; align-items: center; }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 0.35rem; }
.form-control {
  width: 100%;
  padding: 0.55rem 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
}
.form-control:focus { outline: none; border-color: var(--accent); }
select.form-control { cursor: pointer; }

.flash-messages { margin-bottom: 1rem; }
.flash {
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.flash-success { background: #1e3b2f; color: var(--success); border: 1px solid #166534; }
.flash-error { background: #3b1e1e; color: var(--error); border: 1px solid #991b1b; }
.flash-info { background: #1e2a3b; color: var(--info); border: 1px solid #1d4ed8; }

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
}

.login-page-body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
}

.login-card {
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2rem;
}

.login-card h1 { font-size: 1.4rem; margin-bottom: 0.25rem; }
.login-card p { color: var(--muted); font-size: 0.875rem; margin-bottom: 1.5rem; }

.actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem; }

.margen-positivo { color: var(--success); }
.margen-negativo { color: var(--error); }

.empty-state {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
}

/* Mapa de mesas */
.mapa-container { overflow: hidden; }
.mapa-mesas {
  position: relative;
  width: 100%;
  min-height: 420px;
  background:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  background-color: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.mesa-item {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: grab;
  user-select: none;
  border: 3px solid transparent;
  transition: box-shadow 0.15s, transform 0.15s;
  font-size: 0.75rem;
}

.mesa-item:active { cursor: grabbing; }
.mesa-item.selected {
  box-shadow: 0 0 0 3px var(--accent);
  transform: scale(1.05);
  z-index: 10;
}

.mesa-libre { background: #1e3b2f; border-color: var(--success); color: var(--success); }
.mesa-ocupada { background: #3b1e1e; border-color: var(--error); color: #fca5a5; }
.mesa-reservada { background: #3b2f1e; border-color: var(--warning); color: #fcd34d; }

.mesa-num { font-size: 1.1rem; font-weight: 700; line-height: 1; }
.mesa-cap { font-size: 0.65rem; opacity: 0.8; }
.mesa-mesero { font-size: 0.6rem; margin-top: 2px; opacity: 0.9; }

.mapa-leyenda {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.mapa-leyenda span { display: flex; align-items: center; gap: 0.35rem; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot-libre { background: var(--success); }
.dot-ocupada { background: var(--error); }
.dot-reservada { background: var(--warning); }

/* Pedidos POS */
.pedido-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pedido-layout { grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) { .pedido-layout { grid-template-columns: 1fr; } }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.5rem;
}

.menu-grid-scroll {
  max-height: min(58vh, 520px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.menu-item-btn { margin: 0; }
.menu-tile {
  width: 100%;
  padding: 0.65rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.menu-tile:hover { border-color: var(--accent); background: var(--border); }
.menu-tile-name { font-size: 0.8rem; font-weight: 500; line-height: 1.2; }
.menu-tile-price { font-size: 0.85rem; color: var(--accent); font-weight: 600; }

.totales-box {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.totales-row {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.totales-total {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.badge-estado { text-transform: capitalize; }
.badge-pendiente { background: #1e2a3b; color: var(--info); }
.badge-preparacion { background: #3b2f1e; color: var(--warning); }
.badge-listo { background: #1e3b2f; color: var(--success); }
.badge-entregado { background: #1e3b2f; color: #86efac; }
.badge-por_cobrar { background: #3b2f1e; color: #fcd34d; }
.badge-pagado { background: #243044; color: var(--muted); }
.badge-cancelado { background: #3b1e1e; color: var(--error); }
.badge-confirmada { background: #1e3b2f; color: var(--success); }
.badge-completada { background: #243044; color: var(--muted); }
.badge-online { background: #1e3a5f; color: #93c5fd; margin-left: 0.25rem; font-size: 0.7rem; }
.badge-programado { background: #1e2a3b; color: var(--info); }
.badge-activo { background: #1e3b2f; color: var(--success); }
.badge-finalizado { background: #243044; color: var(--muted); }
.badge-ausente { background: #3b1e1e; color: var(--error); }
.badge-admin { background: #312e81; color: #c4b5fd; }
.badge-gerente { background: #1e3a5f; color: #93c5fd; }
.badge-cajero { background: #1e3b2f; color: #86efac; }
.badge-mesero { background: #3b2f1e; color: #fcd34d; }
.badge-cocina { background: #3b1e1e; color: #fca5a5; }

.pwa-install-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85) 30%);
  transform: translateY(110%);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.pwa-install-banner.visible {
  transform: translateY(0);
  pointer-events: auto;
}

.pwa-install-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.pwa-install-text,
.pwa-ios-hint,
.pwa-android-hint {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.pwa-install-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.brand-preview {
  max-height: 80px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

.pwa-icon-preview-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
  margin: 0.5rem 0;
}

.pwa-icon-preview {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.pwa-icon-preview-lg {
  width: 72px;
  height: 72px;
  border-radius: 16px;
}

#kds-audio-banner.active,
#mesero-panel-audio.active,
.mesero-audio-btn.active {
  border-color: var(--success, #22c55e);
  color: var(--success, #22c55e);
}
