/* ============================================================
   MUBAS Society of Electrical Engineering — Custom Styles
   Place at: public/assets/css/styles.css
   ============================================================ */

/* ── CSS Variables (customize here) ───────────────────────── */

/* :root {
  --light-blue: #0C85B7;
  --dark-blue: #3A376E;
  --yellow: #EEDA9F;
  --white: #FFFFFF;
  --feint-white: #F5F5F5;
  --black: #000000;
  --green: #0DA740;
  --gradient-blue: #06587A;
  --gradient-yellow: #EEDA9F;
} */
:root {
  /* Brand Colors */
  --color-primary: #3A376E;   /* Deep navy — main brand dark */
  --color-primary-mid:   #0d357a;   /* Mid navy — cards, panels */
  --color-primary-light: #185db7;   /* Lighter navy — hover states */
  --color-accent: #EEDA9F;   /* Electric yellow — CTA, highlights */
  --color-accent-hover:  #E6B800;   /* Darker yellow — accent hover */
  --color-accent-soft:   #FFF3B0;   /* Pale yellow — soft backgrounds */

  /* Utility Colors */
  --color-bg:            #F4F6FA;   /* Page background */
  --color-surface:       #FFFFFF;   /* Card/panel surface */
  --color-border:        #DDE3EE;   /* Default border */
  --color-border-dark:   #B0BDD0;   /* Stronger border */
  --color-text:          #1A2540;   /* Main text */
  --color-text-muted:    #5C6B8A;   /* Secondary/muted text */
  --color-text-light:    #FFFFFF;   /* Text on dark backgrounds */

  /* Status Colors */
  --color-success:       #16A34A;
  --color-success-bg:    #DCFCE7;
  --color-error:         #DC2626;
  --color-error-bg:      #FEE2E2;
  --color-warning:       #D97706;
  --color-warning-bg:    #FEF3C7;
  --color-info:          #0284C7;
  --color-info-bg:       #E0F2FE;

  /* Typography */
  --font-display:        'Oswald', 'Arial Narrow', sans-serif;
  --font-body:           'Lato', 'Helvetica Neue', sans-serif;
  --font-mono:           'JetBrains Mono', 'Courier New', monospace;

  /* Sizing */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(10,22,40,0.08), 0 1px 2px rgba(10,22,40,0.04);
  --shadow-md:  0 4px 16px rgba(10,22,40,0.10), 0 2px 6px rgba(10,22,40,0.06);
  --shadow-lg:  0 10px 40px rgba(10,22,40,0.14), 0 4px 12px rgba(10,22,40,0.08);
  --shadow-accent: 0 4px 24px rgba(245,197,24,0.25);

  /* Transitions */
  --transition-fast:   150ms cubic-bezier(.4,0,.2,1);
  --transition-normal: 250ms cubic-bezier(.4,0,.2,1);
  --transition-slow:   400ms cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

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

/* ── Guest Layout (auth pages) ─────────────────────────────── */
.see-guest-layout {
  min-height: 100vh;
  display: flex;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.see-guest-layout::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(245,197,24,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 80%, rgba(30,58,95,0.8) 0%, transparent 70%);
  pointer-events: none;
}

/* Circuit-board decorative lines */
.see-guest-layout::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,197,24,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.see-guest-left {
  display: none;
  width: 45%;
  padding: 48px;
  position: relative;
  z-index: 1;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .see-guest-left { display: flex; }
}

.see-guest-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.see-guest-brand-logo {
  width: 52px;
  height: 52px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 1px;
  box-shadow: var(--shadow-accent);
  flex-shrink: 0;
}

.see-guest-brand-name {
  color: var(--color-text-light);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.3;
}

.see-guest-brand-name span {
  display: block;
  color: var(--color-accent);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 400;
}

.see-guest-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
}

.see-guest-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.see-guest-hero h1 em {
  font-style: normal;
  color: var(--color-accent);
}

.see-guest-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  max-width: 380px;
  line-height: 1.7;
}

.see-guest-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.see-guest-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

.see-guest-feature-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.see-guest-footer {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  letter-spacing: 0.5px;
}

.see-guest-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  position: relative;
  z-index: 1;
}

.see-auth-card {
  width: 100%;
  max-width: 460px;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 40px 40px 36px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}

@media (max-width: 480px) {
  .see-auth-card { padding: 28px 20px 24px; border-radius: var(--radius-lg); }
}

.see-auth-card-header {
  margin-bottom: 28px;
}

.see-auth-card-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.see-auth-card-logo-badge {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.5px;
}

.see-auth-card-logo-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.see-auth-card h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.see-auth-card p.subtitle {
  color: var(--color-text-muted);
  font-size: 14px;
}

/* ── Form Elements ─────────────────────────────────────────── */
.see-form-group {
  margin-bottom: 18px;
}

.see-form-group:last-child { margin-bottom: 0; }

.see-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.see-label .optional {
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 12px;
  margin-left: 4px;
}

.see-input,
.see-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.see-input:hover, .see-select:hover {
  border-color: var(--color-border-dark);
}

.see-input:focus, .see-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(10,22,40,0.08);
}

.see-input.error { border-color: var(--color-error); }
.see-input.error:focus { box-shadow: 0 0 0 3px rgba(220,38,38,0.08); }

.see-input-wrapper {
  position: relative;
}

.see-input-wrapper .see-input {
  padding-right: 42px;
}

.see-input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  transition: color var(--transition-fast);
}

.see-input-icon:hover { color: var(--color-text); }

.see-select-wrapper {
  position: relative;
}

.see-select-wrapper::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--color-text-muted);
  pointer-events: none;
}

.see-error-message {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  font-size: 12px;
  color: var(--color-error);
}

.see-error-message svg { flex-shrink: 0; }

/* ── Buttons ───────────────────────────────────────────────── */
.see-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  text-decoration: none;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.see-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

.see-btn-primary {
  background: var(--color-primary);
  color: var(--color-text-light);
}

.see-btn-primary:hover {
  background: var(--color-primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.see-btn-accent {
  background: var(--color-accent);
  color: var(--color-primary);
}

.see-btn-accent:hover {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
}

.see-btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
}

.see-btn-ghost:hover {
  background: var(--color-bg);
  border-color: var(--color-border-dark);
  color: var(--color-text);
}

.see-btn-danger {
  background: var(--color-error);
  color: white;
}

.see-btn-danger:hover {
  background: #B91C1C;
  box-shadow: 0 4px 16px rgba(220,38,38,0.25);
}

.see-btn-whatsapp {
  background: #25D366;
  color: white;
}

.see-btn-whatsapp:hover {
  background: #1EBE57;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.see-btn-full { width: 100%; }
.see-btn-sm { padding: 7px 14px; font-size: 13px; }
.see-btn-lg { padding: 13px 28px; font-size: 15px; }

/* Spinner inside button */
.see-btn .spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

/* ── Loading Overlay ───────────────────────────────────────── */
.see-loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.5);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.see-loading-overlay.active {
  opacity: 1;
  visibility: visible;
}

.see-loading-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}

.see-loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--color-border);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

.see-loading-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.5px;
}

/* Inline spinner */
.see-spinner-inline {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2.5px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Progress bar loader */
.see-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-accent);
  z-index: 10000;
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(245,197,24,0.6);
}

.see-progress-bar.loading {
  width: 70%;
  transition: width 3s ease;
}

.see-progress-bar.done {
  width: 100%;
  transition: width 0.2s ease, opacity 0.3s ease 0.2s;
  opacity: 0;
}

/* ── Auth Links ────────────────────────────────────────────── */
.see-auth-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.see-auth-link:hover {
  color: var(--color-accent-hover);
  border-bottom-color: var(--color-accent-hover);
}

.see-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.see-auth-divider::before,
.see-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.see-auth-divider span {
  font-size: 12px;
  color: var(--color-text-muted);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.see-register-prompt {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ── Status Alerts ─────────────────────────────────────────── */
.see-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  margin-bottom: 18px;
  border: 1px solid transparent;
}

.see-alert-success { background: var(--color-success-bg); border-color: #86EFAC; color: #166534; }
.see-alert-error   { background: var(--color-error-bg);   border-color: #FCA5A5; color: #991B1B; }
.see-alert-warning { background: var(--color-warning-bg); border-color: #FCD34D; color: #92400E; }
.see-alert-info    { background: var(--color-info-bg);    border-color: #7DD3FC; color: #0C4A6E; }

/* ── Checkbox ──────────────────────────────────────────────── */
.see-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--color-text-muted);
  user-select: none;
}

.see-checkbox {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--color-border-dark);
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: white;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  position: relative;
}

.see-checkbox:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.see-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 1px;
  width: 8px;
  height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

/* ── App Layout (authenticated) ────────────────────────────── */
.see-app-layout {
  min-height: 100vh;
  display: flex;
  background: var(--color-bg);
}

/* Sidebar */
.see-sidebar {
  width: 260px;
  background: var(--color-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  transition: transform var(--transition-normal);
}

.see-sidebar-brand {
  padding: 24px 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.see-sidebar-brand-badge {
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
  box-shadow: var(--shadow-accent);
}

.see-sidebar-brand-info {
  overflow: hidden;
}

.see-sidebar-brand-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.see-sidebar-brand-sub {
  font-size: 11px;
  color: var(--color-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.see-sidebar-nav {
  flex: 1;
  padding: 16px 0;
  overflow-y: auto;
}

.see-sidebar-section {
  padding: 0 12px;
  margin-bottom: 8px;
}

.see-sidebar-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 12px 8px 6px;
}

.see-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
  margin-bottom: 2px;
}

.see-nav-item:hover {
  background: rgba(255,255,255,0.07);
  color: white;
}

.see-nav-item.active {
  background: rgba(245,197,24,0.12);
  color: var(--color-accent);
}

.see-nav-item.active .see-nav-icon {
  color: var(--color-accent);
}

.see-nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--color-accent);
  border-radius: 0 3px 3px 0;
}

.see-nav-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.8;
}

.see-nav-badge {
  margin-left: auto;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.see-sidebar-user {
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.see-avatar {
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
}

.see-avatar-lg {
  width: 72px;
  height: 72px;
  font-size: 26px;
}

.see-avatar-xl {
  width: 96px;
  height: 96px;
  font-size: 36px;
}

.see-sidebar-user-info {
  overflow: hidden;
  flex: 1;
}

.see-sidebar-user-name {
  font-size: 13px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.see-sidebar-user-role {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

/* Main content area */
.see-main {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.see-topbar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

.see-topbar-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.3px;
}

.see-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.see-icon-btn {
  width: 38px;
  height: 38px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.see-icon-btn:hover {
  background: var(--color-surface);
  border-color: var(--color-border-dark);
  color: var(--color-text);
}

.see-page-content {
  padding: 28px;
  flex: 1;
}

/* ── Dashboard Cards ───────────────────────────────────────── */
.see-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.see-card-header {
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.see-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.3px;
}

.see-card-body {
  padding: 20px 22px;
}

/* Stat Cards */
.see-stat-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.see-stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.see-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.see-stat-icon-navy    { background: rgba(10,22,40,0.08);   color: var(--color-primary); }
.see-stat-icon-yellow  { background: rgba(245,197,24,0.12); color: var(--color-warning); }
.see-stat-icon-green   { background: rgba(22,163,74,0.10);  color: var(--color-success); }
.see-stat-icon-blue    { background: rgba(2,132,199,0.10);  color: var(--color-info); }

.see-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.see-stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 6px;
}

.see-stat-meta {
  font-size: 12px;
  color: var(--color-text-muted);
}

.see-stat-meta.up   { color: var(--color-success); }
.see-stat-meta.down { color: var(--color-error); }

/* Feature tiles */
.see-feature-tile {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--transition-fast);
  cursor: pointer;
    width: 100%;
    /* Make sure it fills the grid column */
    box-sizing: border-box;
}


.see-feature-tile:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.see-feature-tile-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.see-feature-tile h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}

.see-feature-tile p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ── Profile ───────────────────────────────────────────────── */
.see-profile-banner {
  background: var(--color-primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  height: 120px;
  position: relative;
  overflow: hidden;
}

.see-profile-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,197,24,0.12) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.03) 25%, transparent 25%);
  background-size: auto, 30px 30px;
}

.see-profile-avatar-wrap {
  position: absolute;
  bottom: -36px;
  left: 28px;
}

.see-profile-body {
  padding: 48px 28px 28px;
}

/* ── Registration Status Badge ─────────────────────────────── */
.see-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.see-badge-pending  { background: var(--color-warning-bg); color: var(--color-warning); }
.see-badge-active   { background: var(--color-success-bg); color: var(--color-success); }
.see-badge-inactive { background: var(--color-error-bg);   color: var(--color-error);   }

.see-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ── Detail Row ────────────────────────────────────────────── */
.see-detail-row {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  gap: 12px;
}

.see-detail-row:last-child { border-bottom: none; }

.see-detail-icon {
  width: 32px;
  height: 32px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  flex-shrink: 0;
  margin-top: 1px;
}

.see-detail-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.see-detail-value {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .see-sidebar {
    transform: translateX(-100%);
  }

  .see-sidebar.open {
    transform: translateX(0);
    box-shadow: var(--shadow-lg);
  }

  .see-main {
    margin-left: 0;
  }
}

/* ── Utilities ─────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }



@media (max-width: 900px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 500px)  { .grid-4 { grid-template-columns: 1fr; } }

/* Keep Quick Access grid 2 columns even on small screens */
.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    /* keep your existing gap */
}

/* Override the global media query at max-width: 700px */
@media (max-width: 700px) {
    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-gap-sm  { display: flex; align-items: center; gap: 8px; }
.flex-gap-md  { display: flex; align-items: center; gap: 14px; }

.mt-xs { margin-top: 6px; }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 20px; }
.mt-lg { margin-top: 32px; }

.text-muted  { color: var(--color-text-muted); }
.text-sm     { font-size: 13px; }
.text-xs     { font-size: 11px; }
.font-display { font-family: var(--font-display); }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-fadeInUp { animation: fadeInUp 0.4s ease both; }
.animate-fadeIn   { animation: fadeIn   0.3s ease both; }

.delay-1 { animation-delay: 0.05s; }
.delay-2 { animation-delay: 0.10s; }
.delay-3 { animation-delay: 0.15s; }
.delay-4 { animation-delay: 0.20s; }
.delay-5 { animation-delay: 0.25s; }
.delay-6 { animation-delay: 0.30s; }




/* ── Font Awesome Icons Styling ─────────────────────────── */

/* Sidebar / Nav icons */
.see-nav-icon i {
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  width: 18px;
  height: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

/* Active state */
.see-nav-item.active .see-nav-icon i {
  color: var(--color-accent);
}

/* Buttons with icons */
.see-btn i {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Input wrapper icons */
.see-input-icon i {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

/* Input icon hover */
.see-input-icon:hover i {
  color: var(--color-text);
}

/* Alerts with icons */
.see-alert i {
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
}

/* Feature tiles / card icons */
.see-feature-tile-icon i {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}