/* ============================================================================
   ROBOTICS CLUB NIE — admin.css
   Host Admin Portal Styles: Passcode Gate, Live SQL & Excel Dashboard
   ============================================================================ */

body {
  background-color: var(--navy-dark, #000814) !important;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(0, 180, 216, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(25, 49, 159, 0.12) 0%, transparent 40%),
    url("images/bgimg3.png") !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  color: #f1f5f9;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   TOP NAVIGATION
   ============================================================ */
.admin-top-nav {
  background: rgba(0, 10, 24, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 234, 255, 0.18);
  padding: 0.75rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-nav-content {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-nav-brand img {
  width: 120px;
  height: auto;
  transition: transform 0.2s ease;
}

.admin-nav-brand:hover img {
  transform: scale(1.03);
}

.admin-nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-back-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-back-link:hover {
  color: #00eaff;
}

.btn-logout {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-logout:hover {
  background: rgba(239, 68, 68, 0.3);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.4);
}

/* ============================================================
   MAIN CONTAINER
   ============================================================ */
.admin-main-container {
  flex: 1;
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

/* ============================================================
   PASSCODE GATE (AUTHENTICATION SCREEN)
   ============================================================ */
.passcode-gate-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 65vh;
}

.passcode-gate-card {
  max-width: 480px;
  width: 100%;
  background: rgba(0, 18, 38, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 234, 255, 0.3);
  border-radius: 20px;
  padding: 3rem 2.25rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 234, 255, 0.15);
  animation: gateFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes gateFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.gate-icon-wrapper {
  width: 68px;
  height: 68px;
  background: rgba(0, 234, 255, 0.1);
  border: 1px solid rgba(0, 234, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.25);
}

.gate-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.gate-subtitle {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.passcode-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.passcode-input-group {
  position: relative;
  width: 100%;
}

.passcode-input {
  width: 100%;
  background: rgba(0, 10, 24, 0.85);
  border: 1px solid rgba(0, 234, 255, 0.35);
  border-radius: 12px;
  padding: 14px 48px 14px 18px;
  color: #ffffff;
  font-size: 1.05rem;
  font-family: inherit;
  outline: none;
  transition: all 0.25s ease;
}

.passcode-input:focus {
  border-color: #00eaff;
  box-shadow: 0 0 15px rgba(0, 234, 255, 0.35);
  background: rgba(0, 14, 32, 0.95);
}

.btn-eye-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
}

.gate-error-msg {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  text-align: left;
}

.btn-unlock-portal {
  background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
  border: 1px solid rgba(0, 234, 255, 0.4);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
}

.btn-unlock-portal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 234, 255, 0.45);
  background: linear-gradient(135deg, #00eaff 0%, #0096c7 100%);
}

.gate-footer-hint {
  margin-top: 1.75rem;
  font-size: 0.78rem;
  color: #64748b;
}

/* ============================================================
   DASHBOARD HEADER & KPIS
   ============================================================ */
.dashboard-header {
  margin-bottom: 2rem;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  margin-bottom: 12px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.dashboard-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #ffffff 40%, #00eaff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.dashboard-subtitle {
  font-size: 1rem;
  color: #94a3b8;
  margin: 0;
}

.dashboard-subtitle code {
  color: #00eaff;
  background: rgba(0, 234, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
}

/* KPI Cards Grid */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 2rem;
}

.kpi-card {
  background: rgba(0, 18, 38, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 234, 255, 0.2);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.kpi-card:hover {
  transform: translateY(-3px);
  border-color: #00eaff;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 234, 255, 0.2);
}

.kpi-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 234, 255, 0.12);
  border: 1px solid rgba(0, 234, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.kpi-info {
  flex: 1;
}

.kpi-value {
  font-size: 1.9rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  font-family: 'Space Grotesk', sans-serif;
}

.kpi-label {
  font-size: 0.84rem;
  color: #94a3b8;
  margin-top: 4px;
}

/* ============================================================
   ACTION TOOLBAR
   ============================================================ */
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.5rem;
}

.toolbar-actions-left,
.toolbar-actions-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.btn-tool {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn-tool-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: 1px solid rgba(52, 211, 153, 0.4);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.btn-tool-primary:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);
}

.btn-tool-secondary {
  background: rgba(0, 20, 42, 0.7);
  border: 1px solid rgba(0, 234, 255, 0.3);
  color: #00eaff;
}

.btn-tool-secondary:hover {
  background: rgba(0, 33, 69, 0.85);
  border-color: #00eaff;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-tool-ghost {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #cbd5e1;
}

.btn-tool-ghost:hover {
  border-color: #00eaff;
  color: #00eaff;
  background: rgba(0, 234, 255, 0.08);
}

.btn-tool-accent {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.3) 0%, rgba(25, 49, 159, 0.4) 100%);
  border: 1px solid #00eaff;
  color: #00eaff;
  box-shadow: 0 0 15px rgba(0, 234, 255, 0.2);
}

.btn-tool-accent:hover {
  background: #00eaff;
  color: #000814;
  box-shadow: 0 0 25px rgba(0, 234, 255, 0.6);
  transform: translateY(-2px);
}

/* ============================================================
   TABLE CONTROLS (SEARCH & FILTER)
   ============================================================ */
.table-controls-card {
  background: rgba(0, 16, 36, 0.75);
  border: 1px solid rgba(0, 234, 255, 0.2);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 1.5rem;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 14px;
  font-size: 0.95rem;
  color: #94a3b8;
  pointer-events: none;
}

.search-input {
  width: 100%;
  background: rgba(0, 10, 24, 0.8);
  border: 1px solid rgba(0, 234, 255, 0.25);
  border-radius: 8px;
  padding: 9px 14px 9px 38px;
  color: #ffffff;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
}

.search-input:focus {
  border-color: #00eaff;
  box-shadow: 0 0 12px rgba(0, 234, 255, 0.25);
}

.filter-select {
  width: 100%;
  background: rgba(0, 10, 24, 0.8);
  border: 1px solid rgba(0, 234, 255, 0.25);
  border-radius: 8px;
  padding: 9px 12px;
  color: #e2e8f0;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  cursor: pointer;
}

.filter-select:focus {
  border-color: #00eaff;
}

.filter-select option {
  background: #001020;
  color: #ffffff;
}

.results-count-text {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ============================================================
   DATA TABLE
   ============================================================ */
.table-wrapper-card {
  background: rgba(0, 14, 30, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 234, 255, 0.22);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.admin-data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.92rem;
}

.admin-data-table thead tr {
  background: rgba(0, 25, 54, 0.9);
  border-bottom: 1px solid rgba(0, 234, 255, 0.25);
}

.admin-data-table th {
  padding: 14px 16px;
  font-weight: 600;
  color: #00eaff;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 0.4px;
}

.admin-data-table tbody tr {
  border-bottom: 1px solid rgba(0, 234, 255, 0.1);
  transition: background-color 0.18s ease;
}

.admin-data-table tbody tr:hover {
  background-color: rgba(0, 234, 255, 0.06);
}

.admin-data-table td {
  padding: 13px 16px;
  color: #e2e8f0;
  vertical-align: middle;
}

.usn-badge {
  background: rgba(0, 234, 255, 0.12);
  border: 1px solid rgba(0, 234, 255, 0.35);
  color: #00eaff;
  font-family: 'Space Grotesk', monospace;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.84rem;
}

.year-pill {
  background: rgba(148, 163, 184, 0.12);
  color: #cbd5e1;
  padding: 3px 10px;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 500;
}

.email-link {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.15s ease;
}

.email-link:hover {
  color: #00eaff;
  text-decoration: underline;
}

.phone-tag {
  color: #a7f3d0;
  font-weight: 500;
}

/* Verification Code Badge in Table */
.code-badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.verification-code-tag {
  font-family: 'Space Grotesk', monospace;
  font-weight: 700;
  color: #00eaff;
  background: rgba(0, 234, 255, 0.12);
  border: 1px solid rgba(0, 234, 255, 0.35);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.btn-copy-code-pill {
  background: transparent;
  border: 1px solid rgba(0, 234, 255, 0.3);
  color: #94a3b8;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-copy-code-pill:hover {
  background: rgba(0, 234, 255, 0.2);
  color: #00eaff;
}

/* Status Badges */
.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.status-pill.verified {
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.45);
  color: #34d399;
}

.status-pill.verified:hover {
  background: rgba(16, 185, 129, 0.3);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.status-pill.pending {
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: #fbbf24;
}

.status-pill.pending:hover {
  background: rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

/* Email Status Pills */
.email-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.76rem;
  font-weight: 500;
}

.email-pill.sent {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #6ee7b7;
}

.email-pill.pending {
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #94a3b8;
}

.email-pill.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
  cursor: help;
}

/* Action Buttons in Table */
.btn-table-action {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-resend-email {
  background: rgba(0, 234, 255, 0.12);
  border: 1px solid rgba(0, 234, 255, 0.35);
  color: #00eaff;
}

.btn-resend-email:hover {
  background: rgba(0, 234, 255, 0.3);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 0 10px rgba(0, 234, 255, 0.4);
}

.btn-delete-row {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
}

.btn-delete-row:hover {
  background: rgba(239, 68, 68, 0.35);
  border-color: #ef4444;
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

.btn-delete-row:disabled,
.btn-table-action:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Candidate Verified Card inside Verify Modal */
/* Candidate Verified Card inside Verify Modal */
.candidate-verified-card {
  background: rgba(0, 24, 52, 0.95);
  border: 1px solid rgba(0, 234, 255, 0.35);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 0 25px rgba(0, 234, 255, 0.15);
}

.v-status-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
}

.v-status-badge.verified {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid #10b981;
  color: #34d399;
}

.v-status-badge.pending {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid #f59e0b;
  color: #fbbf24;
}

.v-card-code {
  font-family: 'Space Grotesk', monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: #00eaff;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 234, 255, 0.4);
}

.v-candidate-name {
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 14px 0;
  letter-spacing: 0.5px;
}

.v-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v-meta-item {
  background: rgba(2, 14, 32, 0.75);
  border: 1px solid rgba(0, 234, 255, 0.18);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
}

.v-meta-item.v-meta-full {
  grid-column: span 2;
}

.v-meta-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  font-weight: 700;
  margin-bottom: 3px;
}

.v-meta-val {
  font-size: 0.92rem;
  font-weight: 500;
  color: #f1f5f9;
  word-break: break-word;
  line-height: 1.35;
}

#vCardUsn {
  font-family: monospace;
  font-weight: 700;
  color: #00eaff;
  letter-spacing: 0.5px;
}

#vCardEmail {
  color: #38bdf8;
  word-break: break-all;
  font-size: 0.88rem;
}

#vCardPhone {
  color: #a7f3d0;
  font-family: monospace;
  letter-spacing: 0.5px;
}

@media (max-width: 500px) {
  .v-card-grid {
    grid-template-columns: 1fr;
  }
  .v-meta-item.v-meta-full {
    grid-column: span 1;
  }
}

/* Test Email Box */
.test-email-box {
  background: rgba(0, 28, 60, 0.5);
  border: 1px dashed rgba(0, 234, 255, 0.3);
  border-radius: 10px;
  padding: 14px;
}

/* ============================================================
   MODAL DIALOG (CHANGE PASSCODE)
   ============================================================ */
.admin-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 5, 12, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.admin-modal-dialog {
  background: rgba(0, 18, 38, 0.96);
  border: 1px solid rgba(0, 234, 255, 0.35);
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  padding: 26px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 234, 255, 0.2);
}

.modal-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.modal-header-row h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.btn-close-modal {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.btn-close-modal:hover {
  color: #ffffff;
}

.modal-subtext {
  font-size: 0.86rem;
  color: #94a3b8;
  margin-bottom: 18px;
}

.modal-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.modal-input {
  width: 100%;
  background: rgba(0, 10, 24, 0.8);
  border: 1px solid rgba(0, 234, 255, 0.3);
  border-radius: 8px;
  padding: 10px 12px;
  color: #ffffff;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
}

.modal-input:focus {
  border-color: #00eaff;
}

.modal-alert-msg {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.modal-alert-msg.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.modal-alert-msg.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
}

.modal-footer-row {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.admin-footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: #64748b;
  border-top: 1px solid rgba(0, 234, 255, 0.1);
  background: rgba(0, 8, 20, 0.7);
}
