/* ================================================================
   DETAILAND 2026 — ESTILOS GLOBAIS
   Dark theme premium com glassmorphism
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary:    #0f1629;
  --bg-secondary:  #1a2540;
  --bg-card:       rgba(255,255,255,0.05);
  --bg-card-hover: rgba(255,255,255,0.1);
  --purple-400:    #a78bfa;
  --purple-500:    #8b5cf6;
  --purple-600:    #7c3aed;
  --blue-500:      #3b82f6;
  --blue-600:      #2563eb;
  --pink-500:      #ec4899;
  --green-500:     #22c55e;
  --green-600:     #16a34a;
  --yellow-400:    #facc15;
  --yellow-500:    #eab308;
  --red-500:       #ef4444;
  --text-primary:  #f1f5f9;
  --text-secondary:#94a3b8;
  --border:        rgba(255,255,255,0.1);
  --nav-height:    64px;
  --radius:        12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; font-family: inherit; }

/* ---- GLASSMORPHISM ---- */
.glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ---- GRADIENTE DE TEXTO ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--blue-500), var(--purple-500), var(--pink-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- ANIMAÇÕES ---- */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(139,92,246,0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(139,92,246,0); }
  100% { box-shadow: 0 0 0 0 rgba(139,92,246,0); }
}
@keyframes spin { to { transform: rotate(360deg); } }

.floating   { animation: float 4s ease-in-out infinite; }
.fade-in-up { animation: fadeInUp 0.6s ease both; }
.fade-in    { animation: fadeIn 0.4s ease both; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ---- BOTÕES ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
  user-select: none;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn:not(:disabled):hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.btn:not(:disabled):active { transform: translateY(0); }

.btn-purple { background: linear-gradient(135deg, var(--purple-600), var(--purple-500)); color: #fff; }
.btn-blue   { background: linear-gradient(135deg, var(--blue-600), var(--blue-500)); color: #fff; }
.btn-pink   { background: linear-gradient(135deg, var(--purple-600), var(--pink-500)); color: #fff; }
.btn-green  { background: linear-gradient(135deg, var(--green-600), var(--green-500)); color: #fff; }
.btn-yellow { background: linear-gradient(135deg, #d97706, var(--yellow-500)); color: #fff; }
.btn-red    { background: linear-gradient(135deg, #dc2626, var(--red-500)); color: #fff; }
.btn-ghost  { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg-card-hover); color: var(--text-primary); }
.btn-icon   { width: 36px; height: 36px; padding: 0; border-radius: 8px; }
.btn-sm     { padding: 6px 14px; font-size: 13px; }
.btn-lg     { padding: 14px 28px; font-size: 16px; border-radius: 14px; }
.btn-full   { width: 100%; }

/* ---- INPUTS ---- */
.input, .textarea, .select {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  padding: 10px 14px;
  transition: border-color 0.2s;
  outline: none;
}
.input::placeholder, .textarea::placeholder { color: var(--text-secondary); }
.input:focus, .textarea:focus, .select:focus { border-color: var(--purple-500); }
.textarea { resize: vertical; min-height: 80px; }
.select option { background: var(--bg-secondary); color: var(--text-primary); }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--purple-400); }

/* ---- CARDS ---- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}
.card:hover { background: var(--bg-card-hover); border-color: rgba(139,92,246,0.3); }

/* ---- BOTTOM NAVIGATION ---- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(15,22,41,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1000;
  padding: 0 8px;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
  transition: all 0.2s ease;
  min-width: 60px;
  text-align: center;
  user-select: none;
}
.nav-item svg { width: 22px; height: 22px; transition: transform 0.2s; }
.nav-item:hover { color: var(--purple-400); }
.nav-item.active {
  color: var(--text-primary);
  background: rgba(139,92,246,0.2);
  border: 1px solid rgba(139,92,246,0.3);
}
.nav-item.active svg { transform: scale(1.1); }

/* ---- PAGE WRAPPER ---- */
.page-wrapper {
  min-height: 100vh;
  padding: 24px 16px calc(var(--nav-height) + 24px);
  max-width: 1200px;
  margin: 0 auto;
}
.page-header { text-align: center; margin-bottom: 32px; }
.page-title { font-size: clamp(28px, 5vw, 42px); font-weight: 800; margin-bottom: 8px; }
.page-subtitle { color: var(--text-secondary); font-size: 15px; }

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  animation: fadeIn 0.2s ease;
}
@media (min-width: 640px) {
  .modal-overlay { align-items: center; }
}
.modal-box {
  background: #1a2540;
  border: 1px solid var(--border);
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  animation: slideUp 0.3s ease;
  padding: 0;
}
@media (min-width: 640px) {
  .modal-box { border-radius: 20px; max-height: 85vh; }
}
@keyframes slideUp {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
}
.modal-title { font-size: 18px; font-weight: 700; }
.modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 22px;
  line-height: 1;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.2s;
}
.modal-close:hover { color: var(--text-primary); background: var(--bg-card-hover); }
.modal-body { padding: 20px 24px; }
.modal-footer { padding: 16px 24px 24px; display: flex; gap: 12px; }
.hidden { display: none !important; }

/* ---- TOAST ---- */
.toast-container {
  position: fixed;
  top: 20px;
  right: 16px;
  left: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
@media(min-width: 640px) { .toast-container { left: auto; width: 340px; } }
.toast {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: slideInRight 0.3s ease;
  pointer-events: all;
}
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
.toast.success { border-color: var(--green-500); }
.toast.error   { border-color: var(--red-500); }
.toast-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.toast-msg  { font-size: 14px; }
.toast-title { font-weight: 600; margin-bottom: 2px; }

/* ---- SPINNER ---- */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

/* ---- SPONSORS ---- */
.sponsors-carousel {
  position: relative;
  overflow: hidden;
  padding: 16px 0 20px;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.sponsors-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: sponsors-marquee 24s linear infinite;
}

.sponsors-carousel:hover .sponsors-track {
  animation-play-state: paused;
}

.sponsors-static {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.sponsor-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  transition: all 0.25s;
  min-width: 160px;
  width: 160px;
  min-height: 132px;
  flex: 0 0 auto;
}
.sponsor-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.sponsor-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 16px;
  background: white;
  padding: 8px;
  box-shadow: 0 10px 24px rgba(15,22,41,0.22);
}
.sponsor-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  width: 100%;
}

@keyframes sponsors-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

/* ---- EXPOSITOR CARD ---- */
.exhibitor-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.exhibitor-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(139,92,246,0.4); transform: translateY(-2px); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }

/* ---- MAP PAGE ---- */
.map-page {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.map-topbar {
  padding: 16px;
  flex-shrink: 0;
  background: rgba(15,22,41,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.map-topbar h1 { font-size: 20px; font-weight: 700; margin-bottom: 12px; background: linear-gradient(90deg, var(--blue-500), var(--purple-500)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.map-search-row { display: flex; gap: 8px; }
.map-search-row .input { flex: 1; }
.map-search-row .btn { flex-shrink: 0; }

.map-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  touch-action: none;
  cursor: grab;
  background: #1a2540;
}
.map-container.grabbing { cursor: grabbing; }

.map-viewport {
  position: absolute;
  top: 0; left: 0;
  transform-origin: 0 0;
  will-change: transform;
}

.map-svg-wrapper {
  position: relative;
  display: block;
  width: min(900px, 100vw);
  height: min(900px, 100vw);
  line-height: 0;
}
.map-svg-wrapper img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  user-select: none;
  -webkit-user-drag: none;
}
.map-svg-wrapper svg {
  position: absolute;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.route-line-glow {
  fill: none;
  stroke: rgba(251, 146, 60, 0.28);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.route-line-main {
  fill: none;
  stroke: #f97316;
  stroke-width: 1.05;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2.8 1.4;
  vector-effect: non-scaling-stroke;
  animation: route-dash 1.2s linear infinite;
  filter: drop-shadow(0 0 1px rgba(249,115,22,0.45));
}

.route-pin-start,
.route-pin-end {
  vector-effect: non-scaling-stroke;
}

.route-pin-start {
  fill: #2563eb;
  stroke: #dbeafe;
  stroke-width: 0.32;
}

.route-pin-end {
  fill: #16a34a;
  stroke: #dcfce7;
  stroke-width: 0.32;
}

@keyframes route-dash {
  to { stroke-dashoffset: -4.2; }
}

/* ================================================================
   STAND SVG ELEMENTS — elementos .stand-el dentro do SVG inline
   ViewBox 0 0 100 100 = 1 unidade SVG ≈ 9px a 900px renderizado
================================================================ */

/*
 * STANDS — Áreas clicáveis TRANSPARENTES sobre a imagem mapanovo.svg.
 * O mapa original já mostra visualmente todos os stands (cor, nome, etc.)
 * O overlay SVG serve apenas como hit-area interativa.
 * Só adicionamos cor ao passar o mouse ou ao selecionar.
 */

/* Padrão: completamente invisível — só a área de clique */
.stand-el rect {
  fill: transparent;
  stroke: transparent;
  stroke-width: 0;
  transition: fill 0.15s, stroke 0.15s, stroke-width 0.15s;
}
/* Textos do JS ocultos (o mapa original já tem os labels) */
.stand-el .stand-text-num,
.stand-el .stand-text-comp,
.stand-el .stand-text-size { display: none; }

/* Hover — destaque sutil azul/roxo */
.stand-el:hover rect {
  fill: rgba(99, 102, 241, 0.18);
  stroke: #6366f1;
  stroke-width: 0.3;
}

/* Stand ocupado — hover verde */
.stand-el.occupied:hover rect {
  fill: rgba(22, 163, 74, 0.2);
  stroke: #22c55e;
  stroke-width: 0.3;
}

/* Stand selecionado — destaque roxo visível */
.stand-el.selected rect {
  fill: rgba(124, 58, 237, 0.28);
  stroke: #c4b5fd;
  stroke-width: 0.4;
  filter: drop-shadow(0 0 1.5px rgba(139,92,246,0.8));
}

/* Rota — início (azul pulsante) */
.stand-el.route-start rect {
  fill: rgba(29, 78, 216, 0.25);
  stroke: #93c5fd;
  stroke-width: 0.4;
  animation: pulse-svg-blue 1.5s ease-in-out infinite;
}

/* Rota — destino (verde pulsante) */
.stand-el.route-end rect {
  fill: rgba(22, 101, 52, 0.25);
  stroke: #86efac;
  stroke-width: 0.4;
  animation: pulse-svg-green 1.5s ease-in-out infinite;
}

/* Esmaecido (filtro ativo) */
.stand-el.dimmed { opacity: 0.15; }

@keyframes pulse-svg-blue {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(59,130,246,0)); }
  50%       { filter: drop-shadow(0 0 2.5px rgba(59,130,246,0.9)); }
}
@keyframes pulse-svg-green {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(34,197,94,0)); }
  50%       { filter: drop-shadow(0 0 2.5px rgba(34,197,94,0.9)); }
}

/* Map controls */
.map-controls {
  position: absolute;
  bottom: calc(var(--nav-height) + 12px);
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 100;
}
.map-controls .btn-icon {
  width: 40px; height: 40px;
  background: rgba(26,37,64,0.95);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 18px;
}
.map-controls .btn-icon:hover { background: rgba(139,92,246,0.3); }

/* Route badge on map */
.map-route-info {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26,37,64,0.95);
  border: 1px solid var(--green-500);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--green-500);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 50;
  white-space: nowrap;
}

/* Search results dropdown on map */
.map-search-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: rgba(26,37,64,0.98);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.map-search-result-item {
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.map-search-result-item:last-child { border-bottom: none; }
.map-search-result-item:hover { background: var(--bg-card-hover); }
.map-search-result-name { font-weight: 600; font-size: 13px; }
.map-search-result-sub { font-size: 11px; color: var(--text-secondary); }

/* ---- ADMIN ---- */
.admin-section { margin-bottom: 40px; }
.admin-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.admin-section-title { font-size: 20px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.admin-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 10px;
  transition: background 0.15s;
}
.admin-list-item:hover { background: var(--bg-card-hover); }
.admin-list-actions { display: flex; gap: 6px; }

/* ---- BADGE ---- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}
.badge-purple { background: rgba(139,92,246,0.2); color: var(--purple-400); }
.badge-green  { background: rgba(34,197,94,0.2); color: var(--green-500); }
.badge-yellow { background: rgba(234,179,8,0.2); color: var(--yellow-400); }
.badge-gray   { background: rgba(148,163,184,0.2); color: var(--text-secondary); }

/* ---- SEARCH INPUT BOX ---- */
.search-box { position: relative; }
.search-box svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-secondary); width: 16px; height: 16px; pointer-events: none; }
.search-box .input { padding-left: 36px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 480px) {
  .map-topbar h1 { font-size: 17px; }
  .map-search-row { flex-wrap: wrap; }
}

/* ---- LOGIN PAGE ---- */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.login-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  width: 100%;
  max-width: 420px;
}
.login-logo { text-align: center; margin-bottom: 28px; }
.login-logo img { width: 100px; margin-bottom: 12px; }
.login-logo h1 { font-size: 22px; font-weight: 800; }
.login-logo p { font-size: 13px; color: var(--text-secondary); }

/* ---- EMPTY STATE ---- */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-secondary);
}
.empty-state svg { width: 56px; height: 56px; margin: 0 auto 16px; opacity: 0.4; }
.empty-state h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.empty-state p { font-size: 14px; }

/* ---- STAND DETAIL MODAL ---- */
.stand-image-wrap {
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}
.stand-image {
  display: block;
  width: 100%;
  max-height: 190px;
  object-fit: cover;
}
.stand-detail-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.stand-detail-field { margin-bottom: 12px; }
.stand-detail-field .label { font-size: 12px; font-weight: 600; color: var(--purple-400); margin-bottom: 4px; }
.stand-detail-field .value { font-size: 14px; color: var(--text-primary); }
.stand-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.stand-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; padding: 8px 14px;
  border-radius: 10px; border: 1px solid var(--border);
  transition: all 0.2s;
}
.stand-link:hover { transform: translateY(-1px); }
.stand-link.website { color: #22d3ee; border-color: rgba(34,211,238,0.3); }
.stand-link.whatsapp { color: #4ade80; border-color: rgba(74,222,128,0.3); }
.stand-link.instagram { color: #f472b6; border-color: rgba(244,114,182,0.3); }
.stand-link svg { width: 16px; height: 16px; }

/* ---- ALERT BOX ---- */
.alert {
  padding: 14px 16px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 14px;
}
.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.alert-yellow { background: rgba(234,179,8,0.1); border: 1px solid rgba(234,179,8,0.4); color: var(--yellow-400); }

/* ---- DIVIDER ---- */
hr.divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
