:root {
  --bg: #f4f6f8;
  --panel: #ffffff;
  --ink: #1b2733;
  --muted: #64748b;
  --line: #e2e8f0;
  --brand: #0b6b52;
  --brand-ink: #0a5a45;
  --brand-soft: #e6f4ef;
  --danger: #c0392b;
  --shadow: 0 1px 3px rgba(15, 23, 42, .08), 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-flutuante: 0 12px 32px rgba(15, 23, 42, .14), 0 2px 8px rgba(15, 23, 42, .08);
  --radius: 10px;
  /* Curvas de movimento (aprox. spring criticamente amortecida / sheet do iOS) */
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; }
body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
  height: 100vh;
}

/* ---------- Casca do painel: sidebar + conteúdo ---------- */
.app-shell { display: flex; height: 100vh; }

.sidebar {
  width: 234px; flex-shrink: 0; display: flex; flex-direction: column;
  background: var(--side-bg, #0f172a); color: #cbd5e1;
  transition: width .28s var(--ease-spring);
}
.side-brand {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 12px 16px 16px; border-bottom: 1px solid rgba(148, 163, 184, .14);
}
.side-brand .logo {
  background: var(--brand); color: #fff; font-weight: 800; letter-spacing: .5px;
  padding: 8px 10px; border-radius: 8px; font-size: 13px; flex-shrink: 0;
}
.side-brand-txt { flex: 1; min-width: 0; }
.side-brand strong { display: block; color: #f1f5f9; font-size: 14px; line-height: 1.2; white-space: nowrap; }
.side-brand span { font-size: 11px; color: #64748b; white-space: nowrap; }
.btn-recolher {
  border: none; background: none; color: #64748b; cursor: pointer;
  padding: 6px; border-radius: 6px; flex-shrink: 0; display: flex;
}
.btn-recolher svg { width: 16px; height: 16px; transition: transform .2s ease; }
.btn-recolher:hover { background: rgba(148, 163, 184, .12); color: #e2e8f0; }

.side-nav { flex: 1; padding: 12px 10px; display: flex; flex-direction: column; gap: 2px; overflow-y: auto; overflow-x: hidden; }
.side-nav .tab {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  border: none; background: none; color: #94a3b8; cursor: pointer;
  padding: 10px 12px; border-radius: 8px; font-size: 13px; font-family: inherit;
  transition: background .16s ease, color .16s ease, transform .1s ease-out;
}
.side-nav .tab:active { transform: scale(.97); }
.side-nav .tab svg { width: 18px; height: 18px; flex-shrink: 0; }
.side-nav .tab .txt {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: opacity .16s ease;
}
.side-nav .tab:hover { background: rgba(148, 163, 184, .12); color: #e2e8f0; }
.side-nav .tab.active { background: var(--brand); color: #fff; font-weight: 600; }
.side-nav .tab[hidden] { display: none; }

.side-user {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 14px; border-top: 1px solid rgba(148, 163, 184, .14);
}
.side-user[hidden] { display: none; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--brand); color: #fff; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center; text-transform: uppercase;
}
.side-user-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.side-user-info strong {
  color: #e2e8f0; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.side-user-info span { color: #64748b; font-size: 11px; text-transform: capitalize; }
.btn-logout {
  border: 1px solid rgba(148, 163, 184, .3); background: none; color: #94a3b8;
  padding: 6px; border-radius: 7px; cursor: pointer; display: flex; flex-shrink: 0;
}
.btn-logout svg { width: 16px; height: 16px; }
.btn-logout:hover { background: rgba(248, 113, 113, .12); border-color: rgba(248, 113, 113, .5); color: #fca5a5; }

/* ---------- Sidebar recolhida (só ícones) ---------- */
.sidebar.recolhida { width: 66px; }
.sidebar.recolhida .side-brand { flex-direction: column; gap: 8px; padding: 14px 8px; }
.sidebar.recolhida .side-brand-txt { display: none; }
.sidebar.recolhida .btn-recolher svg { transform: rotate(180deg); }
.sidebar.recolhida .side-nav { padding: 12px 8px; }
.sidebar.recolhida .side-nav .tab { justify-content: center; padding: 11px 0; }
.sidebar.recolhida .side-nav .tab .txt { opacity: 0; width: 0; }
.sidebar.recolhida .side-user { flex-direction: column; gap: 8px; padding: 12px 8px; }
.sidebar.recolhida .side-user-info { display: none; }

.content { flex: 1; min-width: 0; display: flex; flex-direction: column; overflow: auto; }

/* ---------- Topbar (material translúcido: o conteúdo rola por baixo) ---------- */
.topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 22px;
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(15, 23, 42, .07);
}
.page-head h1 { font-size: 18px; margin: 0; letter-spacing: -0.015em; }
.page-head .sub { margin: 2px 0 0; color: var(--muted); font-size: 12px; }
.status-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  font-size: 12px; padding: 5px 10px; border-radius: 999px;
  background: #eef2f6; color: var(--muted); white-space: nowrap;
}
.pill-on { background: var(--brand-soft); color: var(--brand-ink); font-weight: 600; }
.pill-off { background: #fdecea; color: var(--danger); }

main { flex: 1; padding: 20px 22px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: painel-entra .28s var(--ease-out) both; }
@keyframes painel-entra {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

/* Telas estreitas: a sidebar vira barra superior (recolher não se aplica) */
@media (max-width: 860px) {
  .app-shell { flex-direction: column; height: auto; min-height: 100vh; }
  .sidebar, .sidebar.recolhida { width: 100%; }
  .btn-recolher { display: none; }
  .sidebar.recolhida .side-brand { flex-direction: row; padding: 16px 12px 16px 16px; }
  .sidebar.recolhida .side-brand-txt { display: block; }
  .side-nav, .sidebar.recolhida .side-nav { flex-direction: row; overflow-x: auto; padding: 8px 10px; }
  .side-nav .tab, .sidebar.recolhida .side-nav .tab {
    white-space: nowrap; width: auto; justify-content: flex-start; padding: 10px 12px;
  }
  .sidebar.recolhida .side-nav .tab .txt { display: inline; }
  .side-user, .sidebar.recolhida .side-user { border-top: none; padding-top: 0; flex-direction: row; }
  .sidebar.recolhida .side-user-info { display: flex; }
  .content { min-height: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  padding: 8px 14px; border-radius: 8px; cursor: pointer; font-size: 13px;
  transition: background .15s ease, border-color .15s ease, transform .1s ease-out, box-shadow .15s ease;
}
.btn:hover { background: #f8fafc; }
/* feedback no toque, instantâneo (pointer-down, não no release) */
.btn:active { transform: scale(.97); }
.btn:disabled { opacity: .5; cursor: default; transform: none; }
.btn:focus-visible, .tab:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--brand); outline-offset: 2px;
}
.btn-primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-ink); }
.btn-ghost { background: transparent; border-color: transparent; color: var(--muted); }
.btn-ghost:hover { background: #eef2f6; color: var(--ink); }
.btn-danger { background: #fff; border-color: #f0c4bf; color: var(--danger); }
.btn-danger:hover { background: #fdecea; }

/* ---------- Toolbar / filtros ---------- */
.toolbar { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.sync-msg { color: var(--muted); font-size: 13px; }
.empresa-sel { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.empresa-sel select {
  border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; font-size: 13px;
  background: #fff; color: var(--ink); min-width: min(220px, 60vw); max-width: 100%;
}
.btn-sm { padding: 4px 10px; font-size: 12px; }
.tabela-empresas { max-height: 260px; }

.filtros {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end;
  background: var(--panel); padding: 14px 16px; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 14px;
}
.filtros .f { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.filtros label { font-size: 12px; color: var(--muted); }
.filtros input, .filtros select {
  border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; font-size: 13px; background: #fff;
  max-width: 100%;
}
.filtros input[type=text] { min-width: min(150px, 100%); }
.f-check { justify-content: center; }
.f-check label { display: flex; align-items: center; gap: 6px; color: var(--ink); font-size: 13px; }
.f-actions { flex-direction: row; gap: 8px; margin-left: auto; }

.resumo { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.chip {
  background: var(--brand-soft); color: var(--brand-ink); font-weight: 600;
  padding: 6px 12px; border-radius: 999px; font-size: 13px;
}
.chip-alt { background: #eef2f6; color: var(--ink); font-weight: 500; }

/* ---------- Relatórios ---------- */
.stat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px; margin-bottom: 18px;
}
.stat {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 14px 16px; display: flex; flex-direction: column; gap: 4px;
}
.stat-k { color: var(--muted); font-size: 12px; }
.stat-v { font-size: 20px; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -0.015em; }
.stat-sub { color: var(--muted); font-size: 12px; }
.stat-destaque { background: var(--brand-soft); border-color: var(--brand); }
.stat-destaque .stat-k, .stat-destaque .stat-v { color: var(--brand-ink); }
.rel-secao { margin-bottom: 20px; }
.rel-secao h3 { margin: 0 0 8px; font-size: 14px; color: var(--brand-ink); }
.tabela-rel { max-height: 340px; }
.tabela-rel-notas { max-height: calc(100vh - 420px); }
.btn-pdf-nota { padding: 2px 8px; }

/* ---------- Federal: fluxo guiado ---------- */
.passo {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 14px 18px; margin-bottom: 14px;
}
.passo-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.passo-head h3 { margin: 0; font-size: 14px; }
.passo-num {
  width: 24px; height: 24px; border-radius: 50%; background: var(--brand); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.badge {
  font-size: 12px; padding: 3px 10px; border-radius: 999px; white-space: nowrap; font-weight: 600;
}
.badge-ok   { background: var(--brand-soft); color: var(--brand-ink); }
.badge-wait { background: #fff4e5; color: #b26a00; }
.badge-err  { background: #fdecea; color: var(--danger); }
.badge-off  { background: #eef2f6; color: var(--muted); font-weight: 500; }
.status-lista { display: flex; flex-direction: column; gap: 4px; }
.status-linha {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 6px 10px; border: 1px solid #eef2f6; border-radius: 8px; font-size: 13px;
}
.amb-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.avancado { margin-top: 8px; }
.avancado summary {
  cursor: pointer; color: var(--muted); font-size: 12px; user-select: none;
}
.avancado summary:hover { color: var(--ink); }
.avancado[open] summary { margin-bottom: 6px; }
#fed-acao-principal { min-width: min(300px, 100%); }

/* ---------- Visualizador de PDF (detalhe) ---------- */
.pdf-wrap { flex: 1; min-height: 0; display: flex; }
.pdf-wrap[hidden] { display: none; }
.pdf-frame { flex: 1; width: 100%; height: 72vh; border: none; background: #525659; }

/* ---------- Tabela ---------- */
.tabela-wrap {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: auto; max-height: calc(100vh - 380px);
  max-width: 100%; -webkit-overflow-scrolling: touch;
}
.tabela { width: 100%; border-collapse: collapse; font-size: 13px; }
.tabela thead th {
  position: sticky; top: 0; background: #f8fafc; text-align: left; padding: 10px 12px;
  border-bottom: 1px solid var(--line); color: var(--muted); font-weight: 600; white-space: nowrap;
}
.tabela td { padding: 9px 12px; border-bottom: 1px solid #eef2f6; }
.tabela tbody tr { transition: background .14s ease; }
.tabela tbody tr:hover { background: #f8fafc; }
.tabela .num { text-align: right; font-variant-numeric: tabular-nums; }
.tabela .vazio { text-align: center; color: var(--muted); padding: 30px; }
.tabela .mono, .mono { font-family: "Cascadia Code", Consolas, monospace; font-size: 12px; }
.sit { font-size: 11px; padding: 2px 8px; border-radius: 999px; background: #eef2f6; color: var(--muted); }
.sit-CANCELADA { background: #fdecea; color: var(--danger); }
.sit-SUBSTITUIDA { background: #fff4e5; color: #b26a00; }

.paginacao { display: flex; align-items: center; gap: 12px; justify-content: center; margin-top: 14px; }
#pg-info { color: var(--muted); font-size: 13px; }

/* ---------- Config cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: 16px; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); padding: 18px; min-width: 0; /* deixa a tabela rolar dentro do card em vez de estourar o grid */
  transition: box-shadow .22s ease, transform .22s var(--ease-out);
}
.cards .card:hover { box-shadow: 0 6px 18px rgba(15, 23, 42, .1), 0 1px 3px rgba(15, 23, 42, .07); transform: translateY(-1px); }
/* entrada escalonada: cada card chega um instante depois do anterior */
.tab-panel.active .cards .card { animation: card-entra .34s var(--ease-out) both; }
.tab-panel.active .cards .card:nth-child(2) { animation-delay: 45ms; }
.tab-panel.active .cards .card:nth-child(3) { animation-delay: 90ms; }
.tab-panel.active .cards .card:nth-child(4) { animation-delay: 135ms; }
.tab-panel.active .cards .card:nth-child(5) { animation-delay: 180ms; }
.tab-panel.active .cards .card:nth-child(n+6) { animation-delay: 225ms; }
@keyframes card-entra {
  from { opacity: 0; transform: translateY(10px) scale(.985); }
  to { opacity: 1; transform: none; }
}
.card h2 { margin: 0 0 8px; font-size: 15px; letter-spacing: -0.01em; }
.hint { color: var(--muted); font-size: 12px; line-height: 1.5; }
.cert-status { padding: 10px 12px; border-radius: 8px; background: #f8fafc; border: 1px solid var(--line); margin: 10px 0; font-size: 13px; }
.form-grid { display: flex; flex-direction: column; gap: 12px; margin: 12px 0; }
.form-grid label { display: flex; flex-direction: column; gap: 5px; font-size: 12px; color: var(--muted); }
.form-grid input:not([type=checkbox]), .form-grid select {
  border: 1px solid var(--line); border-radius: 8px; padding: 9px 11px; font-size: 13px; color: var(--ink); background: #fff;
  width: 100%; max-width: 100%;
}
.telas-titulo { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.lista-telas { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.lista-telas label {
  display: flex; align-items: center; gap: 10px; flex-direction: row;
  font-size: 13px; color: var(--ink); cursor: pointer; padding: 9px 12px;
}
.lista-telas label + label { border-top: 1px solid #eef2f6; }
.lista-telas label:hover { background: #f8fafc; }
/* o .form-grid estica inputs para 100% — checkbox precisa voltar ao tamanho natural */
.lista-telas input[type=checkbox] {
  width: 17px; height: 17px; flex-shrink: 0; margin: 0; padding: 0;
  border: none; accent-color: var(--brand);
}
.lista-telas span { flex: 1; min-width: 0; }
#usr-telas-box.desabilitado { opacity: .5; pointer-events: none; }

/* Cabeçalho de card com ação (lista de usuários) */
.card-cheio { max-width: 100%; }
.card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.card-head h2 { margin: 0; }
.card-head .btn { flex-shrink: 0; }
.modal-card--form { max-width: 520px; }
.tabela td.acoes { white-space: nowrap; text-align: right; }
.file-row { display: flex; gap: 8px; }
.file-row input { flex: 1; }
.row-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 6px; }

/* ---------- Linha clicável ---------- */
.tabela tbody tr.row-click { cursor: pointer; }

/* ---------- Modal de detalhe ---------- */
.modal {
  position: fixed; inset: 0; background: rgba(15, 23, 42, .4);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  display: flex; align-items: center; justify-content: center; padding: 24px; z-index: 50;
  animation: scrim-entra .22s ease both;
}
.modal[hidden] { display: none; }
@keyframes scrim-entra { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  background: var(--panel); border-radius: 14px; box-shadow: 0 20px 60px rgba(15, 23, 42, .3);
  width: 100%; max-width: 980px; max-height: 90vh; display: flex; flex-direction: column; overflow: hidden;
  /* materializa: escala + subida discretas, curva tipo spring sem overshoot */
  animation: modal-entra .32s var(--ease-spring) both;
}
@keyframes modal-entra {
  from { opacity: 0; transform: translateY(10px) scale(.97); }
  to { opacity: 1; transform: none; }
}
.modal-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 16px 20px; border-bottom: 1px solid var(--line);
}
.modal-head h2 { margin: 0; font-size: 16px; }
.modal-head .sub { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.modal-actions { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; justify-content: flex-end; }
.modal-body { padding: 18px 20px; overflow: auto; }

.det-sec { margin-bottom: 20px; }
.det-sec h3 {
  margin: 0 0 10px; font-size: 13px; color: var(--brand-ink); text-transform: uppercase;
  letter-spacing: .4px; border-bottom: 1px solid var(--line); padding-bottom: 6px;
}
.kv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 6px 24px; }
.kv { display: flex; justify-content: space-between; gap: 12px; padding: 4px 0; font-size: 13px; border-bottom: 1px dashed #eef2f6; }
.kv .k { color: var(--muted); }
.kv .v { color: var(--ink); text-align: right; font-variant-numeric: tabular-nums; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%) translateY(16px) scale(.97);
  background: rgba(27, 39, 51, .92); color: #fff; padding: 12px 18px; border-radius: 12px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-flutuante);
  font-size: 13px; opacity: 0; pointer-events: none;
  transition: opacity .22s ease, transform .3s var(--ease-spring); max-width: 70%;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
.toast.err { background: var(--danger); }
.toast.ok { background: var(--brand); }

/* ---------- Celular (iPhone/Android) ---------- */
@media (max-width: 640px) {
  main { padding: 12px; }
  .topbar { flex-wrap: wrap; padding: 10px 12px; gap: 8px; }
  .page-head h1 { font-size: 16px; }

  /* filtros e formulários empilham em coluna, campo ocupa a largura toda */
  .filtros { padding: 12px; gap: 10px; }
  .filtros .f { width: 100%; }
  .filtros input, .filtros select { width: 100%; }
  .filtros input[type=text] { min-width: 0; }
  .f-actions { margin-left: 0; width: 100%; }
  .f-actions .btn { flex: 1; }
  .toolbar .btn { flex: 1 1 auto; }
  .empresa-sel { width: 100%; }
  .empresa-sel select { width: 100%; min-width: 0; }

  /* iOS dá zoom automático em campo com fonte < 16px — evita o pulo de tela */
  input, select, textarea { font-size: 16px !important; }

  .stat-v { font-size: 17px; }
  .tabela-rel-notas, .tabela-wrap { max-height: 60vh; }

  .modal { padding: 8px; align-items: flex-end; }
  /* no celular o modal é uma folha que sobe do rodapé (entra e sai pelo mesmo caminho) */
  .modal-card { max-height: 96vh; border-radius: 14px 14px 0 0; animation: sheet-entra .36s var(--ease-spring) both; }
  .modal-head { padding: 12px; flex-wrap: wrap; }
  .modal-actions { justify-content: flex-start; }
  .modal-body { padding: 12px; }
  .pdf-frame { height: 58vh; }
  .kv-grid { grid-template-columns: 1fr; }

  .paginacao { flex-wrap: wrap; }
  .toast { max-width: 92%; bottom: 12px; }
}

@keyframes sheet-entra {
  from { opacity: .6; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Movimento reduzido / acessibilidade ---------- */
/* Movimento reduzido não é "sem feedback": vira cross-fade curto, sem deslocamento. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0ms !important;
    transition-duration: .01ms !important;
  }
  .tab-panel.active, .tab-panel.active .cards .card, .modal-card, .modal {
    animation: none !important; opacity: 1; transform: none;
  }
  .toast { transition: opacity .18s ease; transform: translateX(-50%); }
  .toast.show { transform: translateX(-50%); }
}

@media (prefers-reduced-transparency: reduce) {
  .topbar { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .modal { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(15, 23, 42, .55); }
  .toast { background: #1b2733; backdrop-filter: none; -webkit-backdrop-filter: none; }
}
