:root {
  color-scheme: light;

  --page-bg: #f9f9f7;
  --surface: #fcfcfb;
  --surface-raised: #ffffff;
  --text-primary: #0b0b0b;
  --text-secondary: #52514e;
  --text-muted: #898781;
  --border: #e1e0d9;

  --accent: #2a78d6;

  --good: #0ca30c;
  --critical: #d03b3b;
  --rating: #eda100;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(11, 11, 11, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 11, 11, 0.10);
}

/* System preference (used when the user hasn't picked a theme manually) */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;

    --page-bg: #0d0d0d;
    --surface: #1a1a19;
    --surface-raised: #202020;
    --text-primary: #ffffff;
    --text-secondary: #c3c2b7;
    --text-muted: #898781;
    --border: #2c2c2a;

    --accent: #3987e5;
    --rating: #c98500;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.5);
  }
}

/* Explicit override from the theme toggle - wins over system preference either way */
:root[data-theme="dark"] {
  color-scheme: dark;

  --page-bg: #0d0d0d;
  --surface: #1a1a19;
  --surface-raised: #202020;
  --text-primary: #ffffff;
  --text-secondary: #c3c2b7;
  --text-muted: #898781;
  --border: #2c2c2a;

  --accent: #3987e5;
  --rating: #c98500;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  background: var(--page-bg);
  color: var(--text-primary);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 75%, black));
  color: #fff;
  padding: 16px 32px;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand-logo {
  height: 30px;
  width: auto;
  display: block;
  background: #fff;
  border-radius: 4px;
  padding: 2px 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.14);
}

.nav-links a.active {
  color: #fff;
  font-weight: 600;
  background: rgba(255,255,255,0.22);
}

.nav-user {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  text-decoration: none;
}

.user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Layout */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

.page-header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.page-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.page-header h1 {
  margin: 0 0 6px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.page-header p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.98rem;
}

h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 16px;
}

section { margin-bottom: 40px; }

/* Filter bar (schedule picker, etc.) */
.filter-bar {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.filter-bar label {
  margin-bottom: 0;
  min-width: 180px;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
  margin-bottom: 8px;
}

.card {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.card-thumb {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: color-mix(in srgb, var(--accent) 12%, var(--surface-raised));
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  cursor: zoom-in;
}


/* Emoji-icon accent (distinct from .card-thumb, which is a real photo) */
.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: color-mix(in srgb, var(--accent) 12%, var(--surface-raised));
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.card h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.card p {
  margin: 0 0 4px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.card-actions {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Stat tiles */
.stat-tile {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
}

.stat-label {
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

/* Forms */
.form-card, .auth-card {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 440px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

form label {
  display: block;
  margin-bottom: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

input, select, textarea {
  padding: 9px 12px;
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--surface);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}

/* Buttons */
.btn, button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--accent);
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.15s ease;
}

.btn:hover, button:hover {
  background: color-mix(in srgb, var(--accent) 85%, black);
}

.btn-small { padding: 6px 12px; font-size: 0.82rem; }

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: color-mix(in srgb, var(--accent) 10%, var(--surface));
  border-color: var(--accent);
}

.btn-danger {
  background: transparent;
  color: var(--critical);
  border: 1px solid var(--border);
}

.btn-danger:hover {
  background: color-mix(in srgb, var(--critical) 10%, var(--surface));
  border-color: var(--critical);
  color: var(--critical);
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 8px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
}

td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

tr:last-child td { border-bottom: none; }

tbody tr:hover td {
  background: color-mix(in srgb, var(--accent) 4%, var(--surface-raised));
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.badge-good { background: color-mix(in srgb, var(--good) 15%, var(--surface-raised)); color: var(--good); }
.badge-accent { background: color-mix(in srgb, var(--accent) 15%, var(--surface-raised)); color: var(--accent); }
.badge-neutral { background: color-mix(in srgb, var(--text-muted) 18%, var(--surface-raised)); color: var(--text-secondary); }
.badge-critical { background: color-mix(in srgb, var(--critical) 15%, var(--surface-raised)); color: var(--critical); }

/* Alerts */
.alert {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.9rem;
  border-left: 3px solid transparent;
}

.required-mark {
  color: var(--critical);
  margin-left: 2px;
}

.alert-error {
  background: color-mix(in srgb, var(--critical) 10%, var(--surface-raised));
  color: var(--critical);
  border-left-color: var(--critical);
}

.alert-success {
  background: color-mix(in srgb, var(--good) 10%, var(--surface-raised));
  color: var(--good);
  border-left-color: var(--good);
}

.alert-warning {
  background: color-mix(in srgb, #d68a1c 10%, var(--surface-raised));
  color: #d68a1c;
  border-left-color: #d68a1c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.alert-warning form {
  margin: 0;
  flex-shrink: 0;
}

.alert-info {
  background: color-mix(in srgb, var(--accent) 10%, var(--surface-raised));
  color: var(--accent);
  border-left-color: var(--accent);
}

/* Modifier for banner-style alerts that carry an inline dismiss/action
   button (e.g. the notification feed on the homepage) - works with any
   .alert-* color variant, not just warning. */
.alert-dismissible {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.alert-dismissible form {
  margin: 0;
  flex-shrink: 0;
}

.footer {
  text-align: center;
  padding: 24px;
  color: var(--text-muted);
  font-size: 0.82rem;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

/* Public site footer */
.site-footer {
  background: var(--surface-raised);
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding: 40px 32px 0;
}

.footer-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-brand-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.footer-brand p,
.footer-links p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 0 0 6px;
}

.footer-links h4 {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-bottom p { margin: 0; }

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

a { color: var(--accent); }

/* Empty states */
.empty-state {
  text-align: center;
  padding: 48px 20px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-secondary);
}

.empty-state-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  opacity: 0.7;
}

.empty-state p { margin: 0 0 12px; }
.empty-state p:last-child { margin-bottom: 0; }

/* Bar list (admin analytics) */
.bar-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.bar-row {
  display: grid;
  grid-template-columns: 150px 1fr 32px;
  align-items: center;
  gap: 12px;
}

.bar-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.bar-track {
  background: var(--border);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}

.bar-fill {
  background: var(--accent);
  height: 100%;
  border-radius: 999px;
}

.bar-value {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Booking confirmation */
.confirmation-card {
  text-align: center;
  max-width: 460px;
}

.confirmation-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--good) 15%, var(--surface-raised));
  color: var(--good);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
}

.confirmation-table {
  text-align: left;
  margin-top: 20px;
  box-shadow: none;
}

.confirmation-table th {
  background: transparent;
  color: var(--text-muted);
  text-transform: none;
  font-size: 0.85rem;
  letter-spacing: normal;
  width: 35%;
}

.confirmation-table td {
  font-size: 0.9rem;
}

.confirmation-actions {
  justify-content: center;
  margin-top: 24px;
}

/* Testimonials */
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.testimonial-card > .badge {
  margin-bottom: 10px;
}

.testimonial-stars {
  color: var(--rating);
  font-size: 1rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.testimonial-comment {
  margin: 0 0 12px;
  color: var(--text-primary);
  font-size: 0.92rem;
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.card > .badge { margin-bottom: 8px; }

/* Facility profile (read-only facility page) */
.facility-profile {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}

.facility-profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.facility-profile-header .card-thumb {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.facility-profile-header h3 {
  margin: 4px 0 4px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.facility-profile-header p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.facility-profile h4 {
  margin: 20px 0 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.facility-profile > p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin: 0 0 4px;
}

/* Booking policies */
.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}

.policy-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.policy-list li::before {
  content: "\2713";
  color: var(--good);
  font-weight: 700;
  flex-shrink: 0;
}

/* FAQ */
.faq-item {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 10px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--text-muted);
  font-weight: 400;
}

.faq-item[open] summary::after { content: "\2212"; }

.faq-item p {
  margin: 10px 0 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* About page hero banner */
.about-hero {
  text-align: center;
  padding: 56px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 60%, black));
  color: #ffffff;
  margin-bottom: 32px;
}

.about-hero-icons {
  font-size: 2.4rem;
  margin-bottom: 12px;
  letter-spacing: 12px;
}

.about-hero h1 {
  margin: 0 0 8px;
  font-size: 2rem;
  font-weight: 700;
}

.about-hero p {
  margin: 0;
  opacity: 0.9;
}

/* Theme toggle */
.theme-toggle {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
}

.theme-toggle:hover { background: rgba(255,255,255,0.22); }

/* How It Works zigzag timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 8px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-step {
  position: relative;
  width: 50%;
  box-sizing: border-box;
  padding-bottom: 28px;
}

.timeline-step-left {
  left: 0;
  padding-right: 32px;
  text-align: right;
}

.timeline-step-right {
  left: 50%;
  padding-left: 32px;
  text-align: left;
}

.timeline-marker {
  position: absolute;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--page-bg);
  box-shadow: 0 0 0 2px var(--border);
}

.timeline-step-left .timeline-marker { right: -8px; }
.timeline-step-right .timeline-marker { left: -8px; }

.timeline-content {
  display: inline-block;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.timeline-content h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.timeline-content p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

@media (max-width: 640px) {
  .timeline::before { left: 20px; }

  .timeline-step,
  .timeline-step-left,
  .timeline-step-right {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 52px;
    padding-right: 0;
  }

  .timeline-step-left .timeline-marker,
  .timeline-step-right .timeline-marker {
    left: 12px;
    right: auto;
  }
}

/* Small thumbnail used inside admin tables */
.table-thumb {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
}

/* User menu dropdown (navbar) */
.user-menu {
  position: relative;
}

.user-menu-trigger {
  background: none;
  border: none;
  padding: 7px 6px;
  margin: 0;
  font: inherit;
  cursor: pointer;
  color: rgba(255,255,255,0.9);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.user-menu-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 6px;
  z-index: 20;
}

.user-menu-dropdown.open { display: block; }

.user-menu-dropdown a {
  display: block;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
}

.user-menu-dropdown a:hover {
  background: color-mix(in srgb, var(--accent) 10%, var(--surface));
  color: var(--accent);
}

/* Image lightbox (click a facility photo to zoom in) */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: zoom-out;
  padding: 32px;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
}

/* Schedule grid (rooms x time slots) */
.schedule-table {
  table-layout: fixed;
}

.schedule-table th:first-child,
.schedule-table td:first-child {
  width: 140px;
}

.schedule-room-th {
  text-align: center;
}

.schedule-room-td {
  text-align: center;
  vertical-align: middle;
}

.schedule-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Password field with show/hide toggle */
.password-field {
  position: relative;
}

.password-field input {
  padding-right: 40px;
}

.password-toggle {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  cursor: pointer;
}

.password-toggle:hover {
  background: none;
  color: var(--accent);
}

.form-hint { color: var(--text-muted); font-size: 0.85rem; margin-top: -8px; }
