/* ================================================
   Espace Client — Design System (repris de Weblioo)
   Palette : bleu nuit + ambre · Inter · sidebar sombre
   ================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary:       #1E3A5F;
  --primary-hover: #16304F;
  --primary-light: #2F5E93;
  --primary-soft:  #E8EEF5;
  --primary-strong:#142C49;
  --primary-glow:  rgba(30,58,95,0.14);
  --secondary:     #B0752E;
  --secondary-hover:#96621F;
  --secondary-soft:#F7EFE2;
  --success:       #2E7D57;
  --warning:       #B4770E;
  --danger:        #C0392B;
  --info:          #3F6FB5;

  --bg-base:   #F7F8FA;
  --bg-card:   #FFFFFF;
  --bg-card-2: #F1F3F6;
  --bg-input:  #FFFFFF;
  --bg-sidebar:#14273D;

  --border:       #E4E7EC;
  --border-hover: #CDD3DC;

  --text-1: #1E2733;
  --text-2: #3D4754;
  --text-3: #64707E;
  --text-4: #98A1AC;

  --overlay:       rgba(30,39,51,0.04);
  --overlay-hover: rgba(30,39,51,0.07);

  --shadow-sm: 0 1px 2px rgba(15,23,42,0.06);
  --shadow-md: 0 4px 14px rgba(15,23,42,0.08);
  --shadow-lg: 0 14px 36px rgba(15,23,42,0.12);

  --r-sm:5px; --r-md:8px; --r-lg:12px; --r-xl:18px; --r-full:9999px;
  --t-fast:0.15s ease; --t-base:0.25s cubic-bezier(0.4,0,0.2,1);
  --sidebar-w:264px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-base);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; color: var(--text-1); }
a { color: var(--primary-light); text-decoration: none; transition: var(--t-fast); }
a:hover { color: var(--primary); }
::selection { background: rgba(30,58,95,0.16); }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .88em; background: var(--bg-card-2); padding: 1px 6px; border-radius: 5px; color: var(--primary); }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: rgba(148,163,184,0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(148,163,184,0.5); }

/* ---- Icônes ---- */
.ic { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ic svg { display: block; }

/* ================= Buttons ================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--r-md);
  font-size: 14px; font-weight: 600; font-family: inherit;
  border: 1px solid transparent; cursor: pointer; transition: var(--t-base);
  white-space: nowrap; text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:disabled, .btn[disabled] { opacity: .55; cursor: not-allowed; pointer-events: none; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-hover); box-shadow: var(--shadow-md); transform: translateY(-1px); color:#fff; }
.btn-primary:active { transform: translateY(0); }
.btn-accent { background: var(--secondary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--secondary-hover); box-shadow: var(--shadow-md); transform: translateY(-1px); color:#fff; }
.btn-secondary { background: var(--primary-soft); color: var(--primary); border-color: #C9D8E8; }
.btn-secondary:hover { background: #D6E2F0; border-color: var(--primary); }
.btn-outline { background: #fff; color: var(--text-2); border-color: var(--border); }
.btn-outline:hover { background: var(--overlay-hover); color: var(--text-1); border-color: var(--border-hover); }
.btn-ghost { background: transparent; color: var(--text-3); border-color: transparent; }
.btn-ghost:hover { background: var(--overlay-hover); color: var(--text-1); }
.btn-danger { background: rgba(192,57,43,0.08); color: var(--danger); border-color: rgba(192,57,43,0.25); }
.btn-danger:hover { background: rgba(192,57,43,0.15); color: var(--danger); }
.btn-sm { padding: 7px 13px; font-size: 13px; }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn-loading { position: relative; color: transparent !important; }
.btn-loading::after { content:''; position:absolute; width:15px; height:15px; border:2px solid rgba(255,255,255,.4); border-top-color:#fff; border-radius:50%; animation: spin .7s linear infinite; }

/* ================= Cards ================= */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; margin-bottom: 20px; transition: var(--t-base); }
.card:hover { border-color: var(--border-hover); }
.card-flush { padding: 0; overflow: hidden; }
.card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.card-head.tight { margin-bottom: 8px; }
.card h2 { font-size: 17px; margin-bottom: 2px; }
.card h3 { font-size: 15px; }
.card-sub { color: var(--text-3); font-size: 13.5px; margin: 0; }
.card-title-ic { display:flex; align-items:center; gap:10px; }
.card-title-ic .ic { width:34px; height:34px; border-radius:var(--r-md); background:var(--primary-soft); color:var(--primary); }

/* ================= Forms ================= */
.form-group, .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
label, .form-label { font-size: 12px; font-weight: 600; color: var(--text-3); letter-spacing: .03em; text-transform: uppercase; }
input[type=text], input[type=email], input[type=password], input[type=number], input[type=url],
textarea, select {
  background: var(--bg-input); border: 1px solid var(--border); border-radius: var(--r-md);
  color: var(--text-1); font-family: inherit; font-size: 14px; padding: 11px 14px;
  width: 100%; outline: none; transition: var(--t-fast); appearance: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
input::placeholder, textarea::placeholder { color: var(--text-4); }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
textarea { resize: vertical; min-height: 92px; line-height: 1.55; }
textarea.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 13px; }
.field .help, .form-help { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-3); font-size: 12.5px; margin-top: 3px; }
.grid-2, .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox { display: flex; align-items: center; gap: 10px; }
.checkbox input { width: auto; }
.checkbox label { margin: 0; text-transform: none; letter-spacing: 0; font-size: 14px; font-weight: 500; color: var(--text-2); }

/* ================= Badges ================= */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: var(--r-full); font-size: 12px; font-weight: 600; letter-spacing: .01em; border: 1px solid transparent; }
.badge .badge-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge-active, .badge-success { background: rgba(46,125,87,.12); color: #226646; border-color: rgba(46,125,87,.28); }
.badge-maintenance, .badge-warning { background: rgba(180,119,14,.12); color: #8A5A0B; border-color: rgba(180,119,14,.28); }
.badge-suspended, .badge-danger { background: rgba(192,57,43,.10); color: #A02E22; border-color: rgba(192,57,43,.25); }
.badge-pending { background: var(--secondary-soft); color: var(--secondary); border-color: rgba(176,117,46,.28); }
.badge-info, .badge-primary { background: var(--primary-soft); color: var(--primary); border-color: #C9D8E8; }
.badge-neutral { background: var(--bg-card-2); color: var(--text-3); border-color: var(--border); }

/* ================= Alerts (flash) ================= */
.flash, .alert { display: flex; align-items: flex-start; gap: 11px; padding: 13px 16px; border-radius: var(--r-md); font-size: 14px; margin-bottom: 16px; border: 1px solid; animation: slideDown .3s ease; }
.flash .ic, .alert .ic { flex-shrink: 0; margin-top: 1px; }
.flash-success, .alert-success { background: rgba(46,125,87,.10); border-color: rgba(46,125,87,.28); color: #226646; }
.flash-error, .alert-danger  { background: rgba(192,57,43,.08); border-color: rgba(192,57,43,.25); color: #A02E22; }
.flash-info, .alert-info     { background: var(--primary-soft); border-color: #C9D8E8; color: var(--primary); }
.flash-warning, .alert-warning{ background: rgba(180,119,14,.10); border-color: rgba(180,119,14,.28); color: #8A5A0B; }

/* ================= Table ================= */
.data-table, table.data-table { width: 100%; border-collapse: collapse; }
.data-table th { text-align: left; font-size: 11.5px; font-weight: 600; color: var(--text-4); letter-spacing: .05em; text-transform: uppercase; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.data-table td { padding: 13px 16px; font-size: 14px; color: var(--text-2); border-bottom: 1px solid var(--border); }
.data-table tbody tr { transition: background var(--t-fast); }
.data-table tbody tr:hover { background: var(--overlay); }
.data-table tbody tr:last-child td { border-bottom: none; }
.table-wrap { overflow-x: auto; }
.row-tools { display: flex; gap: 8px; align-items: center; justify-content: flex-end; }

/* ================= Tabs ================= */
.tabs { display: flex; gap: 4px; background: var(--bg-card-2); border-radius: var(--r-md); padding: 4px; margin-bottom: 20px; flex-wrap: wrap; }
.tab-btn { display:inline-flex; align-items:center; gap:7px; padding: 9px 15px; border: none; background: transparent; color: var(--text-3); border-radius: var(--r-sm); font-size: 13.5px; font-weight: 600; cursor: pointer; transition: var(--t-base); font-family: inherit; }
.tab-btn.active { background: var(--bg-card); color: var(--primary); box-shadow: var(--shadow-sm); }
.tab-btn:hover:not(.active) { color: var(--text-1); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .3s ease; }

/* ================= Avatar ================= */
.avatar { border-radius: var(--r-full); background: var(--primary); color: #fff; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.avatar-sm { width: 34px; height: 34px; font-size: 13px; }

/* ================= Empty state ================= */
.empty-state { text-align: center; padding: 52px 20px; color: var(--text-4); }
.empty-state .empty-icon { width: 54px; height: 54px; margin: 0 auto 16px; border-radius: var(--r-full); background: var(--bg-card-2); color: var(--text-3); display: flex; align-items: center; justify-content: center; }
.empty-state h3 { color: var(--text-2); margin-bottom: 6px; font-size: 16px; }
.empty-state p { font-size: 14px; margin-bottom: 22px; color: var(--text-3); }

/* ================= Stat cards ================= */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-bottom: 24px; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px 22px; transition: var(--t-base); }
.stat-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-sm); }
.stat-icon { width: 40px; height: 40px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; background: var(--primary-soft); color: var(--primary); }
.stat-icon.amber { background: var(--secondary-soft); color: var(--secondary); }
.stat-value { font-size: 28px; font-weight: 700; letter-spacing: -.02em; font-variant-numeric: tabular-nums; color: var(--text-1); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 13px; color: var(--text-4); font-weight: 500; }

/* ================= Layout : sidebar ================= */
.app-layout { display: flex; min-height: 100vh; }
.sidebar {
  width: var(--sidebar-w); background: var(--bg-sidebar);
  display: flex; flex-direction: column; position: fixed; inset: 0 auto 0 0;
  z-index: 100; overflow-y: auto; transition: transform var(--t-base);
  --text-1:#F2F5F9; --text-3:#8E9BAB; --text-4:#6B7A8C; --border:rgba(255,255,255,.08);
}
.sidebar-header { padding: 20px 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.sidebar-logo { display: flex; align-items: center; gap: 10px; }
.sidebar-logo img { width: 32px; height: 32px; }
.sidebar-logo-text { font-size: 16px; font-weight: 700; color: #F2F5F9; letter-spacing: -.02em; }
.sidebar-nav { padding: 14px 12px; flex: 1; }
.nav-section-label { font-size: 10px; font-weight: 700; color: #6B7A8C; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; margin: 18px 0 6px; }
.nav-section-label:first-child { margin-top: 0; }
.sidebar-link { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: var(--r-md); color: #A9B6C6; font-size: 14px; font-weight: 500; transition: var(--t-fast); margin-bottom: 2px; }
.sidebar-link:hover { background: rgba(255,255,255,.05); color: #F2F5F9; text-decoration: none; }
.sidebar-link.active { background: rgba(30,58,95,.5); color: #E9F1FA; border-right: 2px solid #5B8BC4; }
.sidebar-link .ic { opacity: .85; }
.sidebar-link.active .ic { opacity: 1; }
.sidebar-link .link-badge { margin-left: auto; background: var(--secondary); color: #fff; font-size: 10px; font-weight: 700; padding: 1px 7px; border-radius: var(--r-full); }
.sidebar-link .link-sub { margin-left: auto; font-size: 11px; color: #6B7A8C; }
.sidebar-footer { padding: 12px; border-top: 1px solid rgba(255,255,255,.08); }
.sidebar-user { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: var(--r-md); }
.sidebar-user-info { flex: 1; min-width: 0; }
.sidebar-user-name { font-size: 13px; font-weight: 600; color: #F2F5F9; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-user-email { font-size: 11px; color: #6B7A8C; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-logout { color: #8E9BAB; padding: 8px; border-radius: var(--r-md); display: inline-flex; }
.sidebar-logout:hover { background: rgba(255,255,255,.06); color: #F2F5F9; }

.main-content { margin-left: var(--sidebar-w); flex: 1; min-height: 100vh; display: flex; flex-direction: column; }
.topbar { position: sticky; top: 0; z-index: 50; background: rgba(247,248,250,.88); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 0 32px; height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar-left { display: flex; align-items: center; gap: 14px; min-width: 0; }
.topbar-title { font-size: 16px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; width: 40px; height: 40px; border-radius: var(--r-md); background: var(--bg-card); border: 1px solid var(--border); color: var(--text-1); cursor: pointer; align-items: center; justify-content: center; }
.page-content { padding: 30px 32px 60px; flex: 1; max-width: 1080px; width: 100%; }
.page-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 26px; gap: 16px; }
.page-header h1 { font-size: 23px; margin-bottom: 4px; }
.page-header .card-sub { font-size: 14px; }
.page-header-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--text-3); font-size: 13.5px; font-weight: 500; margin-bottom: 14px; }
.back-link:hover { color: var(--primary); }

/* ================= Auth pages ================= */
.auth-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; background: linear-gradient(150deg, #1E3A5F 0%, #14273D 100%); }
.auth-card { background: #fff; border-radius: var(--r-xl); box-shadow: 0 20px 60px rgba(9,17,30,.35); padding: 36px; width: 100%; max-width: 420px; }
.auth-brand { display: flex; align-items: center; gap: 11px; justify-content: center; margin-bottom: 22px; }
.auth-brand img { width: 38px; height: 38px; }
.auth-brand span { font-weight: 700; color: var(--primary); font-size: 18px; letter-spacing: -.02em; }
.auth-card h1 { font-size: 21px; text-align: center; margin-bottom: 5px; }
.auth-sub { text-align: center; color: var(--text-3); margin-bottom: 24px; font-size: 14px; }

/* ================= Éditeur de contenu ================= */
.site-tile { display: flex; flex-direction: column; gap: 14px; }
.site-tile .dom { color: var(--text-3); font-size: 13px; word-break: break-all; display:flex; align-items:center; gap:6px; }
.site-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }

.section-block { margin-bottom: 26px; }
.section-head { display: flex; align-items: center; gap: 9px; margin: 0 0 12px; }
.section-head .ic { width: 30px; height: 30px; border-radius: 8px; background: var(--secondary-soft); color: var(--secondary); }
.section-head h3 { font-size: 14px; letter-spacing: -.01em; }

.editor-field { padding: 15px 16px; border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: 10px; background: var(--bg-card); transition: var(--t-fast); }
.editor-field:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.editor-field.changed { border-left: 3px solid var(--secondary); }
.editor-field .fhead { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 8px; }
.editor-field .fhead label { margin: 0; }
.editor-field .help { margin-top: 6px; }
.img-field { display: flex; gap: 14px; align-items: flex-start; }
.img-field > div { flex: 1; }
.img-preview { width: 92px; height: 68px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border); background: var(--bg-card-2); flex-shrink: 0; }

/* Recherche dans l'éditeur */
.search-box { position: relative; margin-bottom: 6px; }
.search-box .search-ic { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--text-4); pointer-events: none; }
.search-box input { padding-left: 40px; padding-right: 38px; }
.search-clear { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); border: none; background: transparent; color: var(--text-4); cursor: pointer; padding: 6px; border-radius: var(--r-sm); display: none; }
.search-clear:hover { background: var(--overlay-hover); color: var(--text-1); }
.search-box.has-value .search-clear { display: inline-flex; }
.search-count { font-size: 12.5px; color: var(--text-3); margin-bottom: 14px; min-height: 18px; }
.no-result { text-align: center; padding: 30px 10px; color: var(--text-3); font-size: 14px; }

/* Filtres par catégorie */
.chips { display: flex; gap: 7px; flex-wrap: wrap; margin: 12px 0 4px; }
.chip { display: inline-flex; align-items: center; gap: 6px; font: inherit; font-size: 12.5px; font-weight: 600;
  padding: 6px 12px; border-radius: var(--r-full); border: 1px solid var(--border); background: #fff;
  color: var(--text-3); cursor: pointer; transition: var(--t-fast); white-space: nowrap; }
.chip:hover { border-color: var(--border-hover); color: var(--text-1); }
.chip.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.chip-n { font-size: 11px; opacity: .65; font-weight: 500; }
.chip.active .chip-n { opacity: .85; }

/* Étiquette de catégorie sur chaque champ */
.field-tags { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.field-section { font-size: 11px; color: var(--text-4); background: var(--bg-card-2); border-radius: var(--r-full);
  padding: 2px 9px; white-space: nowrap; }

/* Historique */
.hist-user { font-size: 11.5px; color: var(--text-4); margin-top: 2px; }
.hist-old { color: var(--text-4); text-decoration: line-through; font-size: 13px; }
.hist-new { color: var(--text-1); font-size: 13px; display: flex; align-items: center; gap: 4px; margin-top: 2px; }

.publish-bar { position: sticky; bottom: 16px; z-index: 30; margin-top: 18px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 13px 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.publish-bar .pb-status { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--text-3); }
.publish-bar .pb-actions { display: flex; gap: 10px; }

.copy-box { display: flex; gap: 8px; align-items: stretch; margin-top: 10px; }
.copy-box input { font-size: 13px; font-family: ui-monospace, monospace; }
.ftp-result { display:inline-flex; align-items:center; gap:6px; font-size: 13.5px; font-weight: 500; }
.ftp-result.ok { color: var(--success); }
.ftp-result.err { color: var(--danger); }
.divider { height: 1px; background: var(--border); margin: 22px 0; }
.kv { display: flex; gap: 8px; flex-wrap: wrap; align-items:center; margin: 3px 0; font-size: 14px; color: var(--text-2); }
.kv b { color: var(--text-1); font-weight: 600; }
.repeat-row td { vertical-align: middle; }
.repeat-row td input { padding: 8px 10px; font-size: 13px; }
.danger-zone { border-color: rgba(192,57,43,.2); }

/* ================= Sidebar overlay + responsive ================= */
.sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(9,17,30,.5); backdrop-filter: blur(3px); z-index: 99; }
@media (max-width: 1024px) {
  .sidebar { transform: translateX(-100%); box-shadow: var(--shadow-lg); }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .menu-toggle { display: inline-flex; }
  .sidebar-overlay.active { display: block; }
  .sidebar-link { padding: 12px; }
}
@media (max-width: 768px) {
  .topbar { padding: 0 14px; }
  .page-content { padding: 20px 14px 50px; }
  .page-header { flex-direction: column; }
  .grid-2, .form-row { grid-template-columns: 1fr; }
  .btn { min-height: 44px; }
  input, select, textarea { font-size: 16px; } /* pas de zoom iOS */
  .publish-bar { flex-direction: column; align-items: stretch; }
  .publish-bar .pb-actions .btn { flex: 1; }
  .img-field { flex-direction: column-reverse; }
  .img-preview { width: 100%; height: 120px; }
}

/* ================= Animations ================= */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
