/* ============================================================
   Amici di Lapierre — design tokens (porting 1:1 da index.css / tailwind.config.ts)
   ============================================================ */
:root {
  --background: 40 40% 99%;
  --foreground: 20 14% 14%;

  --card: 0 0% 100%;
  --card-foreground: 20 14% 14%;

  --primary: 357 65% 40%;
  --primary-foreground: 40 40% 99%;

  --secondary: 30 15% 95%;
  --secondary-foreground: 20 14% 20%;

  --muted: 30 15% 96%;
  --muted-foreground: 20 8% 45%;

  --accent: 30 15% 94%;
  --accent-foreground: 20 14% 20%;

  --border: 30 12% 90%;
  --input: 30 12% 92%;
  --ring: 357 65% 40%;

  --radius: 0.5rem;

  --dot-red: 357 65% 60%;
  --dot-coral: 10 70% 75%;
  --dot-yellow: 45 85% 75%;
  --dot-sand: 35 35% 80%;
  --dot-sage: 80 12% 65%;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-logo: 'Bodoni Moda', Didot, 'Bodoni MT', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --shadow-soft: 0 1px 2px hsl(20 14% 14% / 0.04), 0 8px 24px -8px hsl(20 14% 14% / 0.06);
  --shadow-card: 0 1px 3px hsl(20 14% 14% / 0.05), 0 12px 32px -12px hsl(20 14% 14% / 0.08);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.font-display { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.005em; }

/* ---------- layout helpers ---------- */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 2rem;
}
@media (min-width: 640px)  { .container { max-width: 640px; } }
@media (min-width: 768px)  { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }
@media (min-width: 1536px) { .container { max-width: 1200px; } }

.fluid-hero    { font-size: clamp(2.75rem, 6.5vw, 5.5rem); line-height: 1.02; letter-spacing: -0.02em; margin: 0; }
.fluid-section { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.1; letter-spacing: -0.015em; margin: 0 0 1.5rem; }

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: hsl(var(--primary));
  margin: 0 0 1rem;
}

.section-divider {
  width: 3rem;
  height: 1px;
  background: hsl(var(--foreground) / 0.2);
  margin: 0 0 2rem;
  border: 0;
}
.section-divider--center { margin-inline: auto; }

.prose { color: hsl(var(--muted-foreground)); line-height: 1.7; max-width: 48rem; }
.prose p { margin: 0 0 1.25rem; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: hsl(var(--foreground)); font-weight: 600; }
.prose em { font-style: italic; }
.prose--center { text-align: left; }
@media (min-width: 768px) { .prose--center { text-align: center; margin-inline: auto; } }

.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 9999px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.btn-primary:hover { background: hsl(var(--primary) / 0.9); transform: translateY(-1px); box-shadow: 0 10px 24px -10px hsl(var(--primary) / 0.45); }
.btn-primary--sm { padding: 0.55rem 1.1rem; font-size: 0.72rem; }
.btn-ghost {
  background: transparent;
  color: hsl(var(--foreground));
  border-color: hsl(var(--border));
}
.btn-ghost:hover { background: hsl(var(--secondary)); border-color: hsl(var(--foreground) / 0.2); }

/* ---------- brand ---------- */
.brand { display: inline-flex; align-items: center; }
.brand__wordmark { height: 46px; width: auto; }

/* ---------- navbar ---------- */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background: transparent;
  transition: background-color 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
}
.navbar.is-scrolled {
  background: hsl(var(--background) / 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 1rem; }
.navbar__links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .navbar__links { display: flex; } }
.navbar__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.8);
  transition: color 0.2s ease;
}
.navbar__links a:hover { color: hsl(var(--primary)); }
.navbar__auth { color: hsl(var(--muted-foreground)) !important; }
.navbar__auth:hover { color: hsl(var(--foreground)) !important; }
.navbar__links .btn-primary, .navbar__links .btn-primary:hover { color: hsl(var(--primary-foreground)); }

.navbar__toggle {
  display: inline-flex;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  padding: 0.25rem;
}
@media (min-width: 768px) { .navbar__toggle { display: none; } }

.navbar__mobile {
  display: flex;
  flex-direction: column;
  background: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--border));
  padding: 1rem 1.5rem;
  animation: navMobileIn 0.28s ease-out;
}
@media (min-width: 768px) { .navbar__mobile { display: none !important; } }
.navbar__mobile a {
  display: block;
  padding: 0.75rem 0;
  color: hsl(var(--foreground));
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}
.navbar__mobile a:last-child { border-bottom: 0; }
.navbar__mobile-auth { color: hsl(var(--muted-foreground)) !important; }
.navbar__mobile-cta { margin-top: 0.75rem; width: 100%; border-bottom: 0; }
.navbar__mobile .btn-primary { color: hsl(var(--primary-foreground)); }

@keyframes navMobileIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- reveal-on-scroll ---------- */
.reveal, .reveal--left, .reveal--right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal { transform: translateY(20px); }
.reveal--left { transform: translateX(-20px); }
.reveal--right { transform: translateX(20px); }
.reveal.is-visible, .reveal--left.is-visible, .reveal--right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}
.reveal--d6 { transition-duration: 0.6s; }
.reveal--d5 { transition-duration: 0.5s; }
.reveal--y16 { transform: translateY(16px); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--left, .reveal--right, .reveal-load { transition: none !important; animation: none !important; opacity: 1 !important; transform: none !important; }
}

.reveal-load { opacity: 0; }
.reveal-load--up { animation: revealUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.reveal-load--scale { animation: revealScale 1s ease forwards; animation-delay: 0.2s; }
@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes revealScale {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---------- dots backdrop ---------- */
.dots-backdrop { position: absolute; pointer-events: none; user-select: none; }
.dots-backdrop svg { display: block; width: 100%; height: 100%; }
@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.18); }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: hsl(var(--background));
}
.hero__dots { inset: 0; width: 100%; height: 100%; opacity: 0.6; }
.hero__grid {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) { .hero__grid { grid-template-columns: repeat(12, 1fr); } }
.hero__copy { grid-column: 1 / -1; }
@media (min-width: 768px) { .hero__copy { grid-column: span 7; } }
.hero__accent { color: hsl(var(--primary)); font-style: normal; font-family: var(--font-display); }
.hero__lede {
  margin-top: 2rem;
  max-width: 36rem;
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}
@media (min-width: 768px) { .hero__lede { font-size: 1.125rem; } }
.hero__actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero__logo-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .hero__logo-wrap { grid-column: span 5; justify-content: flex-end; align-self: start; margin-top: 140px; }
}
.hero__logo { width: 180px; height: 180px; user-select: none; }

.hero__arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: hsl(var(--muted-foreground));
  animation: heroArrowBounce 2s ease-in-out infinite;
}
@keyframes heroArrowBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ---------- generic sections ---------- */
.section { padding-block: 6rem; background: hsl(var(--background)); scroll-margin-top: 96px; }
#dona { scroll-margin-top: 96px; }
@media (min-width: 768px) { .section { padding-block: 8rem; } }
.section--muted { background: hsl(var(--secondary) / 0.3); }
.section--relative { position: relative; overflow: hidden; }
.section-inner--narrow { max-width: 64rem; margin-inline: auto; }
.section-inner-relative { position: relative; }

/* ---------- association ---------- */
.board-title { font-size: 1.5rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .board-title { font-size: 1.875rem; } }
.board-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .board-grid { grid-template-columns: repeat(3, 1fr); } }
.board-card { background: hsl(var(--background)); border-radius: 2px; padding: 1.5rem; box-shadow: var(--shadow-card); }
.board-name { font-size: 1.125rem; margin: 0; color: hsl(var(--foreground)); }
.board-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.25rem; }
.board-list--members { font-family: var(--font-body); color: hsl(var(--foreground)); }

/* ---------- lapierre ---------- */
.lapierre-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .lapierre-grid { grid-template-columns: repeat(12, 1fr); } }
.lapierre-photo-wrap { grid-column: 1 / -1; }
@media (min-width: 768px) { .lapierre-photo-wrap { grid-column: span 6; } }
.lapierre-photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 2px; box-shadow: var(--shadow-card); }
.lapierre-photo img { width: 100%; height: 100%; object-fit: cover; }
.lapierre-grid > .reveal--right { grid-column: 1 / -1; }
@media (min-width: 768px) { .lapierre-grid > .reveal--right { grid-column: span 6; } }

/* ---------- projects ---------- */
.projects__dots { top: -10rem; right: -10rem; width: 700px; height: 700px; opacity: 0.3; }
.projects__intro { max-width: 42rem; margin-bottom: 4rem; }
.projects__intro-text { color: hsl(var(--muted-foreground)); line-height: 1.7; margin: 0; }
.projects-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
.project-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 2rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover { border-color: hsl(var(--primary) / 0.4); box-shadow: var(--shadow-card); }
.project-card__icon { display: inline-flex; color: hsl(var(--primary)); margin-bottom: 1.25rem; transition: transform 0.3s ease; }
.project-card:hover .project-card__icon { transform: scale(1.1); }
.project-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; color: hsl(var(--foreground)); }
.project-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.7; margin: 0; }
.projects__more { text-align: center; margin-top: 3rem; }

/* ---------- gaston ---------- */
.gaston { max-width: 48rem; margin-inline: auto; text-align: center; }
.gaston__quote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.35;
  color: hsl(var(--foreground) / 0.9);
  margin: 0 0 2rem;
}
@media (min-width: 768px) { .gaston__quote { font-size: 1.875rem; } }
.gaston__second { margin-top: 6rem; }

/* ---------- contact / dona ---------- */
.contact__dots { bottom: -10rem; left: -10rem; width: 700px; height: 700px; opacity: 0.25; }
.contact-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }

.donation-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.donation-card__icon { display: inline-flex; color: hsl(var(--primary)); margin-bottom: 1rem; }
.donation-card__label { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; color: hsl(var(--muted-foreground)); margin: 0 0 0.75rem; }
.donation-card__details { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.875rem; }
.donation-card__details p { margin: 0; color: hsl(var(--muted-foreground)); }
.donation-card__name { font-weight: 500; color: hsl(var(--foreground)) !important; }
.donation-card__iban { margin: 1.25rem 0 0; font-family: 'SF Mono', 'Menlo', ui-monospace, monospace; font-size: 1rem; color: hsl(var(--primary)); letter-spacing: 0.02em; font-variant-numeric: tabular-nums; }

.contact-email { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.contact-email a { transition: color 0.2s ease; }
.contact-email a:hover { color: hsl(var(--foreground)); }
.contact-email svg { color: hsl(var(--primary)); flex: none; }

.contact-form {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--input));
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px hsl(var(--ring));
}
.contact-form textarea { resize: none; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.contact-form__row input { margin-bottom: 0; }
.contact-form__submit { width: 100%; position: relative; }
.contact-form__spinner { animation: spin 0.8s linear infinite; }
.contact-form__spinner[hidden] { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.contact-form__feedback { min-height: 1.2em; margin: 0.75rem 0 0; font-size: 0.8rem; text-align: center; }
.contact-form__feedback.is-success { color: #2f7a4d; }
.contact-form__feedback.is-error { color: hsl(var(--primary)); }

/* ---------- footer ---------- */
.footer { background: hsl(var(--background)); border-top: 1px solid hsl(var(--border)); padding-block: 3rem; }
.footer__inner { display: flex; flex-direction: column; justify-content: space-between; align-items: center; gap: 1.5rem; text-align: center; }
@media (min-width: 768px) { .footer__inner { flex-direction: row; text-align: left; } }
.footer__links { display: flex; align-items: center; gap: 1.5rem; font-size: 0.875rem; }
.footer__links a { color: hsl(var(--muted-foreground)); transition: color 0.2s ease; }
.footer__links a:hover { color: hsl(var(--primary)); }
.footer__links a:last-child:hover { color: hsl(var(--foreground)); }
.footer__copy { font-size: 0.75rem; color: hsl(var(--muted-foreground) / 0.7); margin: 2rem auto 0; text-align: center; }
@media (min-width: 768px) { .footer__copy { text-align: left; margin-left: 2rem; } }

/* ============================================================
   Area soci — auth.html
   ============================================================ */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--background));
  padding: 3rem 1.5rem;
}
.auth-wrap { width: 100%; max-width: 26rem; }
.auth-brand { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; margin-bottom: 2rem; }
.auth-brand__label { margin: 0; }
.auth-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.auth-card h1 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.auth-card p { color: hsl(var(--muted-foreground)); font-size: 0.9rem; line-height: 1.6; margin: 0 0 1rem; }
.auth-card code { color: hsl(var(--primary)); background: hsl(var(--secondary)); padding: 0.1em 0.4em; border-radius: 0.25rem; }
.admin-limited__email { font-size: 0.8rem; }
.auth-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; padding: 0.25rem; background: hsl(var(--secondary)); border-radius: 0.5rem; }
.auth-tab {
  flex: 1;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-family: inherit;
  background: none;
  border: none;
  border-radius: 0.375rem;
  color: hsl(var(--muted-foreground));
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.auth-tab.is-active { background: hsl(var(--background)); color: hsl(var(--foreground)); box-shadow: var(--shadow-soft); }
#authForm { display: flex; flex-direction: column; gap: 0.75rem; text-align: left; }
#authForm input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--input));
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: hsl(var(--foreground));
}
#authForm input:focus { outline: none; box-shadow: 0 0 0 2px hsl(var(--ring)); }
.auth-submit { width: 100%; margin-top: 0.25rem; }
.auth-note { font-size: 0.75rem; margin-top: 1.25rem; }
.auth-back { display: block; text-align: center; font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-top: 1.5rem; transition: color 0.2s ease; }
.auth-back:hover { color: hsl(var(--foreground)); }

/* ============================================================
   Gestionale — admin.html
   ============================================================ */
.admin-body { background: hsl(var(--secondary) / 0.3); min-height: 100vh; }
.admin-loading { min-height: 100vh; display: flex; align-items: center; justify-content: center; color: hsl(var(--muted-foreground)); }
.admin-limited { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.admin-limited .auth-card { max-width: 26rem; }
.admin-header {
  background: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--border));
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand__wordmark--sm { height: 34px; }
.admin-header__right { display: flex; align-items: center; gap: 0.75rem; }
.admin-header__user { font-size: 0.8rem; color: hsl(var(--muted-foreground)); }
.admin-header__signout { padding: 0.5rem 1rem; font-size: 0.8rem; }
.admin-main { max-width: 72rem; margin: 0 auto; padding: 2.5rem 2rem; }

.admin-stats { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .admin-stats { grid-template-columns: repeat(3, 1fr); } }
.admin-stat {
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 1.25rem;
}
.admin-stat__value { font-family: var(--font-display); font-size: 1.5rem; margin: 0; }
.admin-stat__label { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin: 0.15rem 0 0; }

.admin-tabs { display: inline-flex; gap: 0.25rem; padding: 0.25rem; background: hsl(var(--background)); border: 1px solid hsl(var(--border)); border-radius: 0.5rem; margin-bottom: 1.5rem; }
.admin-tab {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  background: none;
  border: none;
  border-radius: 0.375rem;
  color: hsl(var(--muted-foreground));
}
.admin-tab.is-active { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }

.admin-panel {
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 1.5rem;
}
.admin-form { display: grid; grid-template-columns: 1fr; gap: 0.5rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .admin-form { grid-template-columns: repeat(4, 1fr) auto; align-items: center; } }
.admin-form input {
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--input));
  border-radius: 0.375rem;
  font-size: 0.85rem;
  font-family: inherit;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}
.admin-form .btn-primary { font-size: 0.8rem; padding: 0.5rem 1rem; }

.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.admin-table th {
  text-align: left;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--muted-foreground));
  padding: 0 1rem 0.75rem 0;
  border-bottom: 1px solid hsl(var(--border));
}
.admin-table td { padding: 0.75rem 1rem 0.75rem 0; border-bottom: 1px solid hsl(var(--border) / 0.5); color: hsl(var(--foreground) / 0.8); }
.admin-table tr:last-child td { border-bottom: 0; }
.admin-empty { text-align: center; padding: 2rem 0 !important; color: hsl(var(--muted-foreground)); }
