@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&display=swap');

/* ===== TEMA OSCURO (default) ===== */
:root {
  --bg:           #0a090f;
  --surface:      #110f1a;
  --surface-2:    #1a1726;
  --surface-3:    #221f31;
  --border:       rgba(168,85,247,0.13);
  --border-hover: rgba(168,85,247,0.35);
  --purple:       #a855f7;
  --purple-light: #c084fc;
  --purple-l:     #c084fc;
  --purple-dark:  #7c3aed;
  --purple-dim:   rgba(168,85,247,0.11);
  --purple-glow:  rgba(168,85,247,0.22);
  --text:         #f0eeff;
  --text-mid:     #a09ab8;
  --text-dim:     #534e6b;
  --red:          #f87171;
  --green:        #4ade80;
  --yellow:       #fbbf24;
  --orange:       #fb923c;
  --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px;
  --expo:   cubic-bezier(0.16,1,0.3,1);
  --spring: cubic-bezier(0.34,1.56,0.64,1);
  --fd: 'DM Serif Display', Georgia, serif;
  --fb: 'DM Sans', system-ui, sans-serif;
  --header-bg: rgba(10,9,15,0.78);
  --body-grad: radial-gradient(ellipse 90% 50% at 50% -5%, rgba(124,58,237,.16) 0%, transparent 55%);
}

/* ===== TEMA CLARO ===== */
[data-theme="light"] {
  --bg:           #f5f3ff;
  --surface:      #ffffff;
  --surface-2:    #ede9ff;
  --surface-3:    #ddd6fe;
  --border:       rgba(109,40,217,0.18);
  --border-hover: rgba(109,40,217,0.45);
  --purple:       #7c3aed;
  --purple-light: #6d28d9;
  --purple-l:     #6d28d9;
  --purple-dark:  #5b21b6;
  --purple-dim:   rgba(109,40,217,0.1);
  --purple-glow:  rgba(109,40,217,0.2);
  --text:         #1e1040;
  --text-mid:     #4c3a7a;
  --text-dim:     #9580c0;
  --red:          #dc2626;
  --green:        #059669;
  --yellow:       #d97706;
  --orange:       #ea580c;
  --header-bg:    rgba(245,243,255,0.9);
  --body-grad:    radial-gradient(ellipse 90% 50% at 50% -5%, rgba(124,58,237,.1) 0%, transparent 55%);
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--fb);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  overflow-x: hidden;
  background: var(--body-grad), var(--bg);
  min-height: 100vh;
  transition: background .5s, color .4s;
  padding-bottom: 80px; /* espacio para nav inferior */
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.022'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

[data-theme="light"] body::before { opacity: .01 !important; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

a { color: var(--purple-light); text-decoration: none; }
a:hover { color: var(--purple); }

/* ===== HEADER (TOPBAR) ===== */
.topbar, header.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(28px) saturate(160%);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar h1, .topbar .title {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 400;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.5px;
}

.topbar .icons { display: flex; align-items: center; gap: 8px; }
.topbar .icon-btn, .topbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
}
.topbar .icon-btn:hover, .topbar a:hover {
  background: var(--purple-dim);
  border-color: var(--border-hover);
  color: var(--purple-light);
}

.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 16px;
  cursor: pointer;
  transition: all .3s var(--spring);
  color: var(--text-mid);
}
.theme-toggle:hover { transform: rotate(20deg) scale(1.1); border-color: var(--border-hover); background: var(--purple-dim); color: var(--purple-light); }

/* ===== APP / CONTAINER ===== */
.app { min-height: 100vh; }
.container, main.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 18px;
  position: relative;
  z-index: 1;
}

/* ===== CARDS ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.18), inset 0 1px 0 rgba(168,85,247,.05);
  transition: border-color .25s, box-shadow .25s;
}
.card:hover { border-color: var(--border-hover); }

.card h2, .card h3 {
  font-family: var(--fd);
  font-weight: 400;
  margin: 0 0 12px 0;
  color: var(--text);
  letter-spacing: -0.2px;
}
.card h2 { font-size: 22px; }
.card h3 { font-size: 18px; }

/* ===== STATS GRID ===== */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.stat {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
  text-align: center;
  transition: border-color .2s;
}
.stat:hover { border-color: var(--border-hover); }
.stat .label, .stat-label {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.stat .value, .stat-value {
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 400;
  color: var(--purple-light);
  margin-top: 4px;
  display: block;
  line-height: 1.1;
}
.stat.success .value, .stat.success .stat-value { color: var(--green); }
.stat.danger .value, .stat.danger .stat-value { color: var(--red); }
.stat.warning .value, .stat.warning .stat-value { color: var(--yellow); }
.stat.accent .value, .stat.accent .stat-value { color: var(--purple); }

@media (min-width: 600px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== INPUTS / FORMS ===== */
input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 8px;
  font-family: var(--fb);
  font-size: 15px;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color .25s, box-shadow .25s, transform .2s var(--spring);
  appearance: none;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-dim); }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-dim);
}
textarea { resize: vertical; min-height: 80px; }
input[type="datetime-local"], input[type="date"], input[type="time"] { color-scheme: dark; }
[data-theme="light"] input[type="datetime-local"],
[data-theme="light"] input[type="date"],
[data-theme="light"] input[type="time"] { color-scheme: light; }

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a09ab8' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group { margin-bottom: 12px; }
.form-group label, label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ===== BOTONES ===== */
button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 20px;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: var(--surface-2);
  cursor: pointer;
  transition: all .2s var(--expo);
  position: relative;
  overflow: hidden;
  user-select: none;
  text-decoration: none;
  min-height: 44px;
}
button:hover, .btn:hover { filter: brightness(1.2); border-color: var(--border-hover); }
button:active, .btn:active { transform: scale(.95); }
button:disabled, .btn:disabled { opacity: .5; cursor: not-allowed; }

.btn-primary, .btn.primary, button.primary {
  background: var(--purple);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(168,85,247,.3);
}
.btn-primary:hover, .btn.primary:hover, button.primary:hover {
  background: var(--purple-light);
  filter: none;
}
.btn-accent, .btn.accent, button.accent {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
}
.btn-success, .btn.success, button.success { background: var(--green); color: #fff; }
.btn-danger, .btn.danger, button.danger {
  background: rgba(248,113,113,.1);
  border: 1px solid rgba(248,113,113,.2);
  color: var(--red);
}
.btn-ghost, .btn.ghost, button.ghost {
  background: var(--surface-2);
  color: var(--text-mid);
  border: 1px solid var(--border);
}
.btn-outline, .btn.outline, button.outline {
  background: transparent;
  color: var(--purple-light);
  border: 1px solid var(--border-hover);
}
.btn-block, .btn.block { width: 100%; }
.btn-sm, .btn.sm { padding: 7px 14px; font-size: 12px; min-height: 34px; }

/* ===== BOTTOM NAV ===== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--header-bg);
  backdrop-filter: blur(28px) saturate(160%);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
  z-index: 50;
}
.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: 12px;
  transition: color .2s, background .2s;
  flex: 1;
  text-align: center;
  max-width: 80px;
}
.bottom-nav a .ico { font-size: 20px; }
.bottom-nav a.active {
  color: var(--purple-light);
  background: var(--purple-dim);
}
.bottom-nav a:hover { color: var(--purple-light); }

/* ===== FAB ===== */
.fab {
  position: fixed;
  bottom: calc(80px + env(safe-area-inset-bottom));
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(168,85,247,.45);
  z-index: 49;
  transition: transform .25s var(--spring);
}
.fab:hover { transform: scale(1.08) rotate(90deg); color: #fff; }

/* ===== LIST ITEMS ===== */
.list { display: flex; flex-direction: column; gap: 10px; }
.list-item, a.list-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  color: var(--text);
  transition: all .2s;
  cursor: pointer;
}
.list-item:hover, a.list-item:hover {
  border-color: var(--border-hover);
  transform: translateX(2px);
  background: var(--surface-2);
  text-decoration: none !important;
}
.list-item *, a.list-item * { text-decoration: none !important; }
.list-item-main { flex: 1; min-width: 0; }
.list-item-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.list-item-sub {
  font-size: 12.5px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 99px;
  letter-spacing: .03em;
}
.badge-success, .badge.success { background: rgba(74,222,128,.12); color: var(--green); border: 1px solid rgba(74,222,128,.25); }
.badge-warning, .badge.warning { background: rgba(251,191,36,.12); color: var(--yellow); border: 1px solid rgba(251,191,36,.25); }
.badge-danger, .badge.danger { background: rgba(248,113,113,.12); color: var(--red); border: 1px solid rgba(248,113,113,.25); }
.badge-info, .badge.info { background: var(--purple-dim); color: var(--purple-light); border: 1px solid var(--border-hover); }
.badge-gray, .badge.gray { background: var(--surface-3); color: var(--text-mid); border: 1px solid var(--border); }

.dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 5px;
}
.dot-green, .dot.green { background: var(--green); box-shadow: 0 0 8px rgba(74,222,128,.5); }
.dot-yellow, .dot.yellow { background: var(--yellow); box-shadow: 0 0 8px rgba(251,191,36,.5); }
.dot-red, .dot.red { background: var(--red); box-shadow: 0 0 8px rgba(248,113,113,.5); }

/* ===== TABS ===== */
.tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 99px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-mid);
  white-space: nowrap;
  cursor: pointer;
  transition: all .2s;
}
.tab.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  box-shadow: 0 4px 16px rgba(168,85,247,.3);
}
.tab:hover:not(.active) { border-color: var(--border-hover); color: var(--purple-light); background: var(--purple-dim); }

/* ===== SEARCH BAR ===== */
.search-bar { margin-bottom: 14px; }
.search-bar input { margin-bottom: 0; }

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(5,4,10,.82);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 200;
  animation: mBg .3s ease;
}
@keyframes mBg { from { opacity: 0; } to { opacity: 1; } }

.modal-content {
  width: 100%;
  max-width: 680px;
  height: 92vh;
  max-height: 92vh;
  background: var(--surface);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
  animation: slideUp .45s var(--expo);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@keyframes slideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-handle {
  width: 40px;
  height: 4px;
  background: var(--surface-3);
  border-radius: 2px;
  margin: 8px auto 8px;
  flex-shrink: 0;
}
.modal-header {
  padding: 0 22px 12px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.modal-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px 22px;
  -webkit-overflow-scrolling: touch;
}
.modal h3, .modal-title {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 4px 0;
  color: var(--text);
}
.modal .close, .modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 0;
  color: var(--text-mid);
  font-size: 14px;
  min-height: unset;
  z-index: 5;
}
.modal-footer {
  display: flex;
  gap: 8px;
  padding: 14px 22px calc(14px + env(safe-area-inset-bottom));
  background: var(--surface);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.modal-footer .btn { flex: 1; }
@media (min-width: 768px) {
  .modal { align-items: center; }
  .modal-content { height: auto; max-height: 88vh; border-radius: var(--r-xl); border-bottom: 1px solid var(--border); }
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface-3);
  border: 1px solid var(--border-hover);
  color: var(--text);
  font-size: 13.5px;
  padding: 11px 22px;
  border-radius: 99px;
  z-index: 9999;
  white-space: nowrap;
  animation: toastIn .3s var(--expo), toastOut .3s var(--expo) 2.2s forwards;
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
}
.toast.success { background: rgba(74,222,128,.15); border-color: rgba(74,222,128,.4); color: var(--green); }
.toast.error { background: rgba(248,113,113,.15); border-color: rgba(248,113,113,.4); color: var(--red); }
@keyframes toastIn { from { opacity: 0; transform: translateX(-50%) translateY(-10px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
@keyframes toastOut { to { opacity: 0; transform: translateX(-50%) translateY(-10px); } }

/* ===== SPINNER ===== */
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 30px auto;
  display: block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading { display: flex; justify-content: center; padding: 40px; }

/* ===== TABLES ===== */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
table thead { background: var(--surface-2); }
table th {
  padding: 10px 8px;
  text-align: left;
  font-weight: 600;
  color: var(--text-dim);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--border);
}
table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
table tr:hover td { background: var(--surface-2); color: var(--text); }

/* ===== LOGIN PAGE ===== */
.login-page {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--body-grad), var(--bg);
  padding: 20px;
}
.login-box {
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 0 60px rgba(124,58,237,.15);
  animation: fadeInUp .5s var(--expo);
}
.login-box h1 {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 6px;
}
.login-box h1 span { color: var(--purple); }
.login-box .subtitle {
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 24px;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ===== HIGHLIGHT CARD (gradiente) ===== */
.card-highlight {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple)) !important;
  color: #fff;
  border: none !important;
  box-shadow: 0 8px 32px rgba(124,58,237,.35);
}
.card-highlight * { color: #fff; }
.card-highlight .label { color: rgba(255,255,255,.85); }
.card-highlight .stat-value { color: #fff; }

.card-danger {
  background: linear-gradient(135deg, #991b1b, #dc2626) !important;
  color: #fff;
  border: none !important;
}
.card-danger * { color: #fff; }
.card-danger .label { color: rgba(255,255,255,.85); }

/* ===== DETAILS / SUMMARY (collapsibles) ===== */
details summary {
  cursor: pointer;
  user-select: none;
  list-style: none;
  position: relative;
  padding-right: 24px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '›';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform .3s;
  color: var(--text-mid);
  font-size: 18px;
}
details[open] summary::after { transform: translateY(-50%) rotate(-90deg); }

/* ===== HELPERS ===== */
.text-muted { color: var(--text-mid); }
.text-dim { color: var(--text-dim); }
.text-success { color: var(--green); }
.text-danger { color: var(--red); }
.text-warning { color: var(--yellow); }
.text-purple { color: var(--purple-light); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.hidden { display: none !important; }
.full { grid-column: 1 / -1; }

/* ===== MOBILE TWEAKS ===== */
@media (max-width: 480px) {
  .container, main.container { padding: 18px 14px; }
  .topbar { padding: 12px 16px; }
  .topbar h1, .topbar .title { font-size: 19px; }
  .card { padding: 16px; }
  .card h2 { font-size: 19px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { gap: 8px; }
  .stat { padding: 12px; }
  .stat .value, .stat-value { font-size: 22px; }
  table { font-size: 12px; }
  table th, table td { padding: 8px 6px; }
  .login-box { padding: 28px 22px; }
}

/* ===== PRINT (PDF export) ===== */
@media print {
  body { background: white !important; color: black !important; }
  .topbar, .bottom-nav, .fab, .btn, button, .modal { display: none !important; }
  .card { border: 1px solid #ccc !important; box-shadow: none !important; background: white !important; }
  * { color: black !important; }
}

/* ===== FADE IN ANIMATION ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.card, .list-item { animation: fadeInUp .35s var(--expo) both; }
