:root {
  --bg: #0f172a;
  --surface: #1e293b;
  --border: #334155;
  --text: #f8fafc;
  --muted: #94a3b8;
  --accent: #0ea5e9;
  --accent-dim: #0284c7;
  --danger: #f43f5e;
  --warn: #fbbf24;
  --ok: #34d399;
  --radius: 12px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: radial-gradient(1200px 600px at 10% -10%, #164e63 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 0%, #1e3a5f 0%, transparent 50%), var(--bg);
  color: var(--text);
  line-height: 1.5;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1rem 4rem;
}

@media (min-width: 768px) {
  main {
    padding: 1.5rem 1.25rem 4rem;
  }
}

@media (min-width: 1024px) {
  main {
    padding: 2rem 1.5rem 4rem;
  }
}

h1 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 1.6rem;
  }
}

.month-toolbar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .month-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem 1.5rem;
    padding: 1.15rem 1.35rem;
  }
}

.month-field {
  flex: 0 0 auto;
}

.month-field input[type="month"] {
  min-width: 11rem;
}

.month-hint {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
  flex: 1 1 200px;
}

@media (min-width: 768px) {
  .month-hint {
    margin: 0;
    padding-bottom: 0.15rem;
  }
}

.tabs-wrap {
  margin-bottom: 1rem;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  padding: 0.2rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.tabs__btn {
  flex: 1 1 auto;
  min-width: 5.5rem;
  padding: 0.55rem 0.75rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}

.tabs__btn:hover {
  color: var(--text);
  background: rgba(30, 41, 59, 0.65);
}

.tabs__btn.is-active {
  color: #0f172a;
  background: linear-gradient(145deg, #38bdf8 0%, #0ea5e9 45%, #0284c7 100%);
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(14, 165, 233, 0.35);
}

.tabs__icon {
  margin-right: 0.2rem;
  opacity: 0.95;
}

.tabs__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.tab-panel {
  padding-bottom: 0.25rem;
}

.app-section {
  margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .app-section {
    margin-bottom: 1.9rem;
  }
}

.tab-panel[hidden] {
  display: none !important;
}

.sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .sub {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}

@media (min-width: 1024px) {
  .card {
    padding: 1.25rem 1.35rem;
    border-radius: var(--radius);
  }
}

.card span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card strong,
.card .dash-val {
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  transition: color 0.25s ease, transform 0.2s ease;
}

@media (min-width: 1024px) {
  .card strong,
  .card .dash-val {
    font-size: 1.25rem;
  }
}

.card--hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card--hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  border-color: rgba(14, 165, 233, 0.35);
}

.card--hero {
  border-color: rgba(52, 211, 153, 0.35);
  background: linear-gradient(165deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.65) 100%);
}

.card--hero .restante-valor {
  font-size: 1.45rem;
  font-weight: 800;
  color: #6ee7b7;
  letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
  .card--hero .restante-valor {
    font-size: 1.65rem;
  }
}

.restante-valor.negativo {
  color: #ff6b7a !important;
  text-shadow: 0 0 24px rgba(244, 63, 94, 0.25);
}

.dash-val.flash {
  animation: dashPulse 0.65s ease;
}

@keyframes dashPulse {
  0% {
    opacity: 0.55;
    transform: scale(0.98);
  }
  40% {
    opacity: 1;
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.limit-progress-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
}

.limit-progress-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.limit-progress-pct {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.limit-progress-track {
  height: 12px;
  border-radius: 999px;
  background: #0b1220;
  border: 1px solid var(--border);
  overflow: hidden;
}

.limit-progress-track.at-limit {
  border-color: rgba(251, 191, 36, 0.45);
}

.limit-progress-track.over-limit {
  border-color: rgba(244, 63, 94, 0.45);
}

.limit-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #22d3ee, #0ea5e9);
  transition: width 0.45s ease, background 0.35s ease;
}

.limit-progress-fill.is-warn {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.limit-progress-fill.is-danger {
  background: linear-gradient(90deg, #fb7185, #e11d48);
}

.label-tip {
  position: relative;
}

.info-tip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  margin-left: 0.25rem;
  font-size: 0.7rem;
  line-height: 1;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--accent);
  cursor: help;
  vertical-align: middle;
}

.info-tip:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-row--search {
  margin-bottom: 0.65rem;
}

.btn-primary {
  background: linear-gradient(135deg, #22d3ee 0%, #0ea5e9 40%, #0369a1 100%) !important;
  border-color: rgba(3, 105, 161, 0.8) !important;
  color: #0f172a !important;
  box-shadow: 0 2px 14px rgba(14, 165, 233, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover {
  transform: scale(1.03);
  filter: brightness(1.06);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
}

.btn-primary:active {
  transform: scale(0.99);
}

.banner {
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: none;
}

@media (min-width: 768px) {
  .banner {
    padding: 1rem 1.25rem;
  }
}

.banner.show {
  display: block;
}

.toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 100;
  max-width: min(92vw, 26rem);
  padding: 0.85rem 1.15rem;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.45;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast.success {
  border-color: rgba(52, 211, 153, 0.45);
}

.toast.error {
  border-color: rgba(244, 63, 94, 0.5);
  color: #fecdd3;
}

.toast.info {
  border-color: rgba(14, 165, 233, 0.5);
}

.banner--over {
  background: rgba(154, 52, 18, 0.35);
  border: 1px solid rgba(251, 146, 60, 0.55);
  color: #ffedd5;
}

.banner--over.severe {
  background: rgba(127, 29, 29, 0.45);
  border: 1px solid rgba(248, 113, 113, 0.55);
  color: #fecaca;
}

.banner--warn {
  background: rgba(66, 52, 7, 0.55);
  border: 1px solid rgba(250, 204, 21, 0.45);
  color: #fef9c3;
}

section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  section {
    padding: 1.25rem 1.35rem;
  }
}

@media (min-width: 1024px) {
  section {
    padding: 1.5rem 1.5rem;
  }
}

section h2 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

@media (min-width: 768px) {
  section h2 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }
}

/* Formulários: mobile empilha; desktop expande com flex */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: flex-end;
}

.form-row--filter {
  margin-bottom: 0.75rem;
}

.form-row label:not(.form-inline-check) {
  flex: 1 1 160px;
  min-width: 0;
}

.form-row .field-grow {
  flex: 2 1 220px;
}

.form-inline-check {
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.45rem;
  white-space: nowrap;
}

.form-row button[type="submit"],
.form-row button.secondary {
  flex: 0 0 auto;
}

.filter-sum {
  margin: 0.75rem 0 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: flex-end;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  label {
    font-size: 0.85rem;
  }
}

input,
select,
button {
  font: inherit;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #0b1220;
  color: var(--text);
  padding: 0.5rem 0.65rem;
  font-size: 16px;
}

.cat-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.cat-row select {
  flex: 1 1 auto;
  min-width: 9rem;
}

.cat-row #btn-add-category {
  flex: 0 0 auto;
  width: 2.25rem;
  padding-left: 0;
  padding-right: 0;
}

.expense-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.expense-actions button {
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  input,
  select,
  button:not(.small) {
    padding: 10px 12px;
  }
}

.input-money {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.money-hint {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 42rem;
  line-height: 1.4;
}

input:focus,
select:focus,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

button {
  cursor: pointer;
  background: var(--accent);
  border-color: var(--accent-dim);
  color: #0f172a;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

button.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

button.danger {
  background: rgba(244, 63, 94, 0.2);
  border-color: rgba(244, 63, 94, 0.5);
  color: #fecdd3;
}

button.small {
  padding: 0.35rem 0.55rem;
  font-size: 0.8rem;
}

.table-container {
  overflow-x: auto;
  margin-top: 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  -webkit-overflow-scrolling: touch;
}

.table-container table {
  min-width: 640px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  table {
    font-size: 0.95rem;
  }
}

th,
td {
  text-align: left;
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) {
  th,
  td {
    padding: 0.65rem 0.85rem;
  }
}

th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
}

td.num {
  font-variant-numeric: tabular-nums;
  text-align: right;
}

td.actions {
  white-space: nowrap;
  text-align: right;
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  background: #0b1220;
  border: 1px solid var(--border);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge.paid {
  border-color: var(--ok);
  color: var(--ok);
  box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.12), 0 0 18px rgba(52, 211, 153, 0.18);
}

.badge.pending {
  border-color: var(--warn);
  color: var(--warn);
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.12), 0 0 18px rgba(251, 191, 36, 0.18);
}

.badge.info {
  border-color: rgba(148, 163, 184, 0.6);
  color: #cbd5e1;
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.12), 0 0 18px rgba(148, 163, 184, 0.12);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 50;
}

.modal-backdrop.show {
  display: flex;
}

#modal-confirm {
  z-index: 70;
}

#modal-confirm[hidden] {
  display: none !important;
}

#modal-confirm.show {
  display: flex !important;
}

.confirm-message {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.prompt-message {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.prompt-label {
  display: block;
  margin: 0 0 0.35rem;
}

.prompt-label input {
  width: 100%;
  margin-top: 0.25rem;
}

.modal--prompt .actions {
  margin-top: 0.85rem;
}

.modal--confirm .actions {
  margin-top: 0;
}

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  width: 100%;
  max-width: 440px;
}

@media (min-width: 768px) {
  .modal {
    padding: 1.35rem;
  }
}

.modal h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.modal .actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

.empty {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  margin: 0;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  footer {
    font-size: 0.8rem;
    margin-top: 2.5rem;
  }
}

.auth-section {
  max-width: 420px;
  margin: 2rem auto;
}

.auth-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem 1.5rem;
}

.auth-card h1 {
  margin-bottom: 0.35rem;
}

.auth-heading {
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
}

.auth-form label {
  display: block;
  margin-bottom: 0.65rem;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #0f172a;
  color: var(--text);
}

.auth-switch {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.link-like {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  font: inherit;
  padding: 0;
}

.app-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.65rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.app-user {
  font-size: 0.9rem;
  color: var(--muted);
  word-break: break-all;
}

.export-pdf-bar {
  flex: 1 1 100%;
  margin-top: 0.75rem;
  padding: 0.75rem 0.85rem;
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.08) 0%, rgba(30, 41, 59, 0.95) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

@media (min-width: 768px) {
  .export-pdf-bar {
    flex: 1 1 auto;
    min-width: 14rem;
    margin-top: 0;
    max-width: 28rem;
  }
}

.export-pdf-bar__title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  width: 100%;
}

@media (min-width: 480px) {
  .export-pdf-bar__title {
    width: auto;
    margin-right: 0.25rem;
  }
}

.export-pdf-type-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  flex: 1 1 8rem;
  min-width: 8rem;
}

.export-pdf-type {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text);
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.75);
}

.export-pdf-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.export-pdf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(15, 23, 42, 0.6);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.export-pdf-btn:hover {
  background: rgba(51, 65, 85, 0.85);
  border-color: var(--accent);
  color: #fff;
}

.export-pdf-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.export-pdf-btn--accent {
  border-color: rgba(14, 165, 233, 0.45);
  background: rgba(14, 165, 233, 0.12);
  color: #e0f2fe;
}

.export-pdf-btn--accent:hover {
  background: rgba(14, 165, 233, 0.22);
  border-color: var(--accent);
}

button.small,
a.small {
  font-size: 0.8rem;
  padding: 0.35rem 0.65rem;
}

/* Resumo destacado — aba "A receber" */
.tab-summary {
  margin: 1rem 0 1.15rem;
  padding: 1rem 1.1rem 1.05rem;
  background: linear-gradient(165deg, rgba(14, 165, 233, 0.14) 0%, rgba(30, 41, 59, 0.98) 55%, rgba(15, 23, 42, 0.75) 100%);
  border: 1px solid rgba(14, 165, 233, 0.4);
  border-radius: var(--radius);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(14, 165, 233, 0.08) inset;
}

.tab-summary__intro {
  margin-bottom: 0.85rem;
}

.tab-summary__heading {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.tab-summary__caption {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.tab-summary__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .tab-summary__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .tab-stat--hero {
    grid-column: 1 / -1;
  }
}

.tab-stat {
  background: rgba(11, 18, 32, 0.65);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 4.5rem;
  justify-content: center;
}

.tab-stat--hero {
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.18) 0%, rgba(30, 41, 59, 0.9) 100%);
  border-color: rgba(14, 165, 233, 0.45);
  padding: 0.95rem 1rem;
  min-height: auto;
}

.tab-stat__label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.tab-stat__value {
  font-size: 1.2rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  letter-spacing: -0.02em;
}

.tab-stat--hero .tab-stat__value {
  font-size: 1.55rem;
  color: #e0f2fe;
  text-shadow: 0 0 28px rgba(14, 165, 233, 0.25);
}

@media (min-width: 1024px) {
  .tab-stat--hero .tab-stat__value {
    font-size: 1.75rem;
  }
}

.tab-stat__value--warn {
  color: #fde68a;
}

.tab-stat__value--ok {
  color: #6ee7b7;
}

.tab-summary__hint {
  margin: 0.75rem 0 0;
  padding: 0.55rem 0.7rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #bae6fd;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.28);
  border-radius: 8px;
}

.exp-date-note {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.25;
}