/* ─────────────────────────────────────────────────────────────
   Latinos239 Magazine — Design System (Light / White Theme)
   ───────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?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;1,9..40,400&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* ─── Tokens ──────────────────────────────────────────────── */
:root {
  --bg-primary:     #FFFFFF;
  --bg-section:     #F5F7F7;
  --bg-card:        #EDEFEF;
  --text-primary:   #1A1A1A;
  --text-secondary: #646E6E;
  --charcoal:       #464646;
  --teal:           #5EC8C0;
  --teal-hover:     #3AABA3;
  --teal-dim:       rgba(94, 200, 192, 0.12);
  --teal-mid:       rgba(94, 200, 192, 0.25);
  --border:         #E4E8E8;
  --border-light:   #EBEBEB;
  --error:          #D94F4F;
  --error-bg:       rgba(217, 79, 79, 0.08);
  --shadow-sm:      0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.09);
  --shadow-lg:      0 8px 32px rgba(0,0,0,0.12);
  --font-body:      'DM Sans', sans-serif;
  --font-display:   'Playfair Display', serif;
  --transition:     all 0.2s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; background: none; }
input { font-family: var(--font-body); outline: none; }

/* ─── Eyebrow ─────────────────────────────────────────────── */
.eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
}

/* ─── Language Toggle Button ──────────────────────────────── */
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-secondary);
  background: var(--bg-primary);
  transition: var(--transition);
  cursor: pointer;
}
.lang-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.lang-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 0;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--teal);
  color: #FFFFFF;
}
.btn-primary:hover { background-color: var(--teal-hover); }
.btn-primary:active { transform: scale(0.98); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 16px;
  font-size: 13px;
}
.btn-ghost:hover { color: var(--teal); }

.btn-teal-outline {
  background: transparent;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0;
  transition: var(--transition);
}
.btn-teal-outline:hover { background: var(--teal); color: #fff; }

.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ─── Form Fields ─────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  background-color: var(--bg-primary);
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  font-size: 15px;
  border-radius: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input::placeholder { color: #BABABA; }
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-dim); }
.form-input.error { border-color: var(--error); }

/* ─── Alerts ──────────────────────────────────────────────── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  border-left: 3px solid;
  animation: slideIn 0.25s ease;
}
.alert-error { background-color: var(--error-bg); border-color: var(--error); color: var(--error); }
.alert-success { background-color: var(--teal-dim); border-color: var(--teal); color: #2a9491; }

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

.hidden { display: none !important; }

/* ─── Loading spinner ─────────────────────────────────────── */
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar-logo { display: flex; justify-content: center; flex-shrink: 0; }
.navbar-logo img { height: 36px; width: auto; object-fit: contain; flex-shrink: 0; }

.navbar-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 12px;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--teal); }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION — with photo background slideshow
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}

/* Slideshow layers */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }

/* Dark overlay for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.52) 0%,
    rgba(0,0,0,0.42) 60%,
    rgba(0,0,0,0.58) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background-color: var(--teal);
  opacity: 0.8;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 68px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  color: #FFFFFF;
  margin-bottom: 22px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-headline em { font-style: italic; color: var(--teal); }

.hero-subhead {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

/* Slide indicators */
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 1.5px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hero-dot.active { background: var(--teal); border-color: var(--teal); transform: scale(1.2); }

/* Scroll hint */
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 56px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
  position: relative; z-index: 2;
}
.hero-scroll-hint svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.5); }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ═══════════════════════════════════════════════════════════
   VALUE PROPS
══════════════════════════════════════════════════════════ */
.value-section {
  background-color: var(--bg-section);
  padding: 88px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header { text-align: center; margin-bottom: 52px; }

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 12px;
  letter-spacing: -0.5px;
}

.benefits-carousel-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 50px; /* Space for arrows on desktop */
}

.benefits-carousel {
  display: flex;
  overflow-x: scroll; /* Forces scroll container */
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  gap: 16px;
  /* Hide scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.benefits-carousel::-webkit-scrollbar { display: none; }

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  position: relative;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-end;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  width: 100%;
}

.slide-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 8px;
  line-height: 1.2;
}

.slide-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
}
.carousel-btn:hover { border-color: var(--teal); color: var(--teal); }
.carousel-btn svg { width: 18px; height: 18px; }
.prev-btn { left: 0; }
.next-btn { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #D9D9D9;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.carousel-dots .dot.active { background: var(--teal); transform: scale(1.3); }

/* ═══════════════════════════════════════════════════════════
   REGISTRATION SECTION
══════════════════════════════════════════════════════════ */
.register-section { padding: 88px 40px; background-color: var(--bg-primary); }

.register-inner { max-width: 520px; margin: 0 auto; }

.register-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.register-header { text-align: center; margin-bottom: 36px; }

.register-title { font-size: 24px; font-weight: 700; letter-spacing: -0.5px; margin-top: 12px; margin-bottom: 10px; }

.register-subtitle { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.register-form { display: flex; flex-direction: column; gap: 20px; }

.form-footer-note { font-size: 12px; color: #AAAAAA; text-align: center; line-height: 1.5; }

/* Code step */
.code-step { text-align: center; }

.code-step-message { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 28px; }

.code-step-email { color: var(--teal); font-weight: 600; }

.code-inputs-row { display: flex; gap: 10px; justify-content: center; margin-bottom: 24px; }

.code-digit {
  width: 62px; height: 66px;
  text-align: center;
  font-size: 26px; font-weight: 700;
  background-color: var(--bg-section);
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  border-radius: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  caret-color: var(--teal);
}
.code-digit:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-dim); outline: none; }
.code-digit.filled { border-color: var(--teal); color: var(--teal); }

.code-resend { font-size: 13px; color: var(--text-secondary); margin-top: 16px; display: block; }
.code-resend button { background: none; border: none; color: var(--teal); font-size: 13px; font-family: var(--font-body); cursor: pointer; padding: 0; text-decoration: underline; text-underline-offset: 2px; }
.code-resend button:hover { color: var(--teal-hover); }

/* Success state */
.success-state { text-align: center; padding: 16px 0; }

.success-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background-color: var(--teal-dim);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid var(--teal-mid);
}
.success-icon svg { width: 32px; height: 32px; stroke: var(--teal); stroke-width: 2.5; fill: none; }

.success-title { font-size: 20px; font-weight: 700; color: var(--teal); margin-bottom: 12px; letter-spacing: -0.3px; }

.success-msg { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 28px; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background-color: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 48px 40px;
  text-align: center;
}
.footer-logo { justify-content: center; margin-bottom: 20px; }
.footer-logo img { height: 28px; width: auto; margin: 0 auto; }

.footer-divider { width: 40px; height: 1px; background-color: var(--border); margin: 20px auto; }

.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 20px; }
.footer-links a { font-size: 12px; color: #AAAAAA; letter-spacing: 0.5px; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }

.footer-copy { font-size: 12px; color: #BBBBBB; letter-spacing: 0.5px; }

/* ═══════════════════════════════════════════════════════════
   ADMIN PAGE — White Theme
══════════════════════════════════════════════════════════ */
.admin-body { background-color: var(--bg-section); min-height: 100vh; }

/* Login screen */
.admin-login {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  background-color: var(--bg-section);
}

.admin-login-card {
  width: 100%; max-width: 420px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}
.admin-login-header { text-align: center; margin-bottom: 36px; }
.admin-login-subtitle { font-size: 13px; color: var(--text-secondary); margin-top: 8px; }
.admin-login-form { display: flex; flex-direction: column; gap: 18px; }

/* Admin Dashboard */
.admin-dashboard { min-height: 100vh; }

.admin-navbar {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  position: sticky; top: 0; z-index: 50;
  box-shadow: var(--shadow-sm);
}

.admin-navbar-right { display: flex; align-items: center; gap: 16px; }

.admin-badge {
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal);
  background-color: var(--teal-dim);
  padding: 4px 10px;
}

.admin-navbar a { flex-shrink: 0; }
.admin-navbar img { height: 32px; width: auto; object-fit: contain; flex-shrink: 0; }

.admin-main { max-width: 1280px; margin: 0 auto; padding: 48px 40px; }

.admin-page-title { font-size: 28px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 8px; }
.admin-page-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 40px; }

/* Stats bar */
.stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }

.stat-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 28px 32px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background-color: var(--teal); }

.stat-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 10px; }
.stat-value { font-size: 40px; font-weight: 700; color: var(--text-primary); line-height: 1; letter-spacing: -1px; }
.stat-value-teal { color: var(--teal); }

/* Users panel */
.users-panel { background-color: var(--bg-primary); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }

.users-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap; gap: 16px;
}
.users-panel-title { font-size: 15px; font-weight: 700; letter-spacing: -0.2px; }

.users-controls { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.search-wrap { position: relative; }
.search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; stroke: #CCCCCC; fill: none; stroke-width: 2; pointer-events: none; }

.search-input {
  padding: 10px 14px 10px 36px;
  background-color: var(--bg-section);
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  font-size: 14px; font-family: var(--font-body);
  width: 240px; border-radius: 0;
  transition: border-color 0.2s;
}
.search-input::placeholder { color: #CCCCCC; }
.search-input:focus { outline: none; border-color: var(--teal); }

/* Table */
.users-table-wrap { overflow-x: auto; }
.users-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.users-table thead tr { border-bottom: 1px solid var(--border); background-color: var(--bg-section); }

.users-table th {
  text-align: left; padding: 14px 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-secondary); white-space: nowrap;
}
.users-table th.sortable { cursor: pointer; user-select: none; transition: color 0.2s; }
.users-table th.sortable:hover { color: var(--teal); }
.users-table th.sort-active { color: var(--teal); }

.sort-arrow { display: inline-block; margin-left: 4px; opacity: 0.5; font-size: 10px; }
.sort-active .sort-arrow { opacity: 1; }

.users-table tbody tr { border-bottom: 1px solid var(--border-light); transition: background-color 0.15s; }
.users-table tbody tr:hover { background-color: var(--bg-section); }
.users-table tbody tr:last-child { border-bottom: none; }

.users-table td { padding: 16px 20px; color: var(--text-primary); vertical-align: middle; }

.td-name { font-weight: 600; }
.td-email { color: var(--text-secondary); font-size: 13px; }
.td-phone { color: var(--text-secondary); font-size: 13px; }
.td-date { color: #AAAAAA; font-size: 12px; white-space: nowrap; }

.user-avatar {
  width: 34px; height: 34px;
  background-color: var(--teal-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--teal);
  flex-shrink: 0;
}
.td-name-cell { display: flex; align-items: center; gap: 12px; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--text-secondary); }
.empty-icon { font-size: 36px; margin-bottom: 12px; opacity: 0.3; }

.table-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 12px; background: var(--bg-section);
}
.table-count { font-size: 13px; color: #AAAAAA; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .navbar-inner { padding: 12px 14px; }
  .navbar-logo img { height: 26px; }
  .hero { padding: 100px 24px 60px; }
  .value-section { padding: 64px 24px; }
  .register-section { padding: 64px 24px; }
  .register-card { padding: 36px 28px; }
  .admin-main { padding: 32px 20px; }
  .admin-navbar { padding: 14px 20px; }
  .stats-bar { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 600px) {
  #admin-email-display { display: none; }
  .admin-navbar-right { gap: 8px; }
  .btn-outline[href="#value-section"] { display: none !important; }
  .navbar-inner { 
    display: flex; 
    justify-content: space-between; 
  }
  .navbar-spacer { display: none; }
  .hero-headline { font-size: 36px; }
  .benefits-carousel-wrap { padding: 0; }
  .carousel-btn { 
    width: 38px; height: 38px; 
  }
  .carousel-btn svg { width: 16px; height: 16px; }
  .prev-btn { left: 8px; }
  .next-btn { right: 8px; }
  .slide-content { padding: 24px; }
  .slide-title { font-size: 24px; }
  .slide-sub { font-size: 14px; }
  .carousel-slide { aspect-ratio: 4/3; }
  .register-card { padding: 28px 20px; }
  .code-digit { width: 52px; height: 58px; font-size: 20px; }
  .users-panel-header { flex-direction: column; align-items: flex-start; }
  .search-input { width: 100%; }
  .users-controls { width: 100%; }
  .table-footer { flex-direction: column; }
  .admin-login-card { padding: 36px 24px; }
  .footer-links { flex-direction: column; gap: 10px; }
  .nav-link { display: none; }
  .logout-btn-text { display: none; }
}
