/* ===== FIKOM FUTURE LEADERS - LKTD SYSTEM STYLES ===== */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Nunito:wght@300;400;500;600;700&display=swap");

:root {
  --bg-deep: #020818;
  --bg-dark: #06112a;
  --bg-card: rgba(6, 17, 42, 0.85);
  --bg-card-hover: rgba(10, 25, 60, 0.95);
  --gold: #e8b94a;
  --gold-light: #f5d06e;
  --gold-dark: #b8892a;
  --crimson: #c9184a;
  --crimson-light: #e8315f;
  --silver: #a8b5cc;
  --silver-light: #c8d5e8;
  --text-primary: #e8eef8;
  --text-secondary: #8fa3c0;
  --border-glow: rgba(232, 185, 74, 0.3);
  --border-subtle: rgba(168, 181, 204, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== COSMIC BACKGROUND ===== */
.stars-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(10, 30, 80, 0.4) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(20, 10, 60, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(5, 15, 50, 0.5) 0%, transparent 70%), var(--bg-deep);
}

.stars-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255, 255, 255, 0.8) 0%, transparent 100%), radial-gradient(1px 1px at 25% 35%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 10%, rgba(232, 185, 74, 0.9) 0%, transparent 100%), radial-gradient(1px 1px at 55% 60%, rgba(255, 255, 255, 0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 25%, rgba(255, 255, 255, 0.5) 0%, transparent 100%), radial-gradient(1.5px 1.5px at 80% 70%, rgba(232, 185, 74, 0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 40%, rgba(255, 255, 255, 0.6) 0%, transparent 100%), radial-gradient(1px 1px at 15% 75%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 85%, rgba(255, 255, 255, 0.4) 0%, transparent 100%), radial-gradient(1px 1px at 65% 90%, rgba(232, 185, 74, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 100%), radial-gradient(1px 1px at 95% 80%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 48% 48%, rgba(255, 255, 255, 0.7) 0%, transparent 100%), radial-gradient(1px 1px at 72% 55%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 28% 20%, rgba(201, 24, 74, 0.7) 0%, transparent 100%);
}

/* ===== TYPOGRAPHY ===== */
.font-cinzel {
  font-family: "Cinzel", serif;
}

/* ===== SIDEBAR ===== */
.sidebar {
  width: 260px;
  height: 100vh; /* UBAH INI: dari min-height menjadi height mutlak */
  background: linear-gradient(180deg, rgba(6, 17, 42, 0.98) 0%, rgba(3, 8, 24, 0.99) 100%);
  border-right: 1px solid var(--border-glow);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  backdrop-filter: blur(20px);
}
/* Tambahkan class ini agar menu di tengah bisa di-scroll, 
   sedangkan Logo dan tombol Logout tetap diam (stay) */
.flex-1 {
  flex: 1;
}

.overflow-y-auto {
  overflow-y: auto;
  /* Opsional: Membuat scrollbar tidak terlalu tebal di Firefox */
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 185, 74, 0.3) transparent;
}

.sidebar-logo {
  padding: 20px 16px;
  border-bottom: 1px solid var(--border-glow);
  text-align: center;
}

.sidebar-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(232, 185, 74, 0.5));
}

.sidebar-title {
  font-family: "Cinzel", serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  margin-top: 8px;
  line-height: 1.3;
}

.sidebar-subtitle {
  font-size: 10px;
  color: var(--silver);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-section-label {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--silver);
  text-transform: uppercase;
  padding: 16px 20px 6px;
  font-weight: 600;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--silver);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  margin: 1px 0;
}

.nav-item:hover {
  color: var(--gold-light);
  background: rgba(232, 185, 74, 0.07);
  border-left-color: var(--gold);
}

.nav-item.active {
  color: var(--gold);
  background: rgba(232, 185, 74, 0.1);
  border-left-color: var(--gold);
}

.nav-item i {
  width: 18px;
  text-align: center;
  font-size: 14px;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  margin-left: 260px;
  padding: 24px;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* ===== TOPBAR ===== */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 12px 20px;
  background: rgba(6, 17, 42, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.page-title {
  font-family: "Cinzel", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.page-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.user-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(232, 185, 74, 0.08);
  border: 1px solid var(--border-glow);
  border-radius: 50px;
  padding: 6px 14px 6px 6px;
}

.user-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--crimson));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: white;
  font-weight: 700;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: border-color 0.2s ease;
}

.card:hover {
  border-color: var(--border-glow);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.card-title {
  font-family: "Cinzel", serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
}

/* ===== STATS CARDS ===== */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.stat-card.gold::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.stat-card.crimson::before {
  background: linear-gradient(90deg, var(--crimson), var(--crimson-light));
}
.stat-card.blue::before {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}
.stat-card.green::before {
  background: linear-gradient(90deg, #10b981, #34d399);
}
.stat-card.purple::before {
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.stat-number {
  font-family: "Cinzel", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  font-family: "Nunito", sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a0e00;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 185, 74, 0.3);
}

.btn-crimson {
  background: linear-gradient(135deg, var(--crimson), #8b0025);
  color: white;
}

.btn-crimson:hover {
  background: linear-gradient(135deg, var(--crimson-light), var(--crimson));
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-glow);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(232, 185, 74, 0.1);
}

.btn-danger {
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: white;
}

.btn-success {
  background: linear-gradient(135deg, #059669, #047857);
  color: white;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
}
.btn-icon {
  padding: 6px 8px;
}

/* ===== TABLES ===== */
.table-container {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

thead tr {
  background: rgba(232, 185, 74, 0.08);
  border-bottom: 1px solid var(--border-glow);
}

thead th {
  padding: 12px 16px;
  text-align: left;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 600;
}

tbody tr {
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.15s ease;
}

tbody tr:hover {
  background: rgba(232, 185, 74, 0.04);
}
tbody tr:last-child {
  border-bottom: none;
}

tbody td {
  padding: 11px 16px;
  color: var(--text-primary);
  vertical-align: middle;
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--silver-light);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  background: rgba(3, 8, 24, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 13px;
  font-family: "Nunito", sans-serif;
  transition: all 0.2s ease;
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 185, 74, 0.1);
  background: rgba(6, 17, 42, 0.9);
}

.form-control option {
  background: #06112a;
  color: var(--text-primary);
}

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-plus {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-minus {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-gold {
  background: rgba(232, 185, 74, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(232, 185, 74, 0.3);
}

.badge-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-crimson {
  background: rgba(201, 24, 74, 0.15);
  color: #f472b6;
  border: 1px solid rgba(201, 24, 74, 0.3);
}

.badge-ringan {
  background: rgba(234, 179, 8, 0.15);
  color: #fde68a;
  border: 1px solid rgba(234, 179, 8, 0.3);
}
.badge-sedang {
  background: rgba(249, 115, 22, 0.15);
  color: #fdba74;
  border: 1px solid rgba(249, 115, 22, 0.3);
}
.badge-berat {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.badge-penambahan {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 24, 0.85);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: linear-gradient(180deg, #0a1a45 0%, #060f2a 100%);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(232, 185, 74, 0.08);
  position: relative;
}

.modal-box.modal-lg {
  max-width: 720px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-glow);
}

.modal-title {
  font-family: "Cinzel", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
}

.modal-close {
  width: 30px;
  height: 30px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 6px;
  color: #f87171;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
}

/* ===== SEARCH & PAGINATION ===== */
.search-input {
  position: relative;
  max-width: 280px;
}

.search-input input {
  padding-left: 36px;
}

.search-input i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 13px;
}

.pagination {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.page-btn {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-secondary);
  transition: all 0.2s;
  font-family: "Nunito", sans-serif;
}

.page-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.page-btn.active {
  background: var(--gold);
  color: #1a0e00;
  border-color: var(--gold);
  font-weight: 700;
}
.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ===== LOGIN PAGE ===== */
.login-bg {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.login-card {
  background: rgba(6, 17, 42, 0.92);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(232, 185, 74, 0.06);
  position: relative;
  z-index: 1;
}

.login-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 50%;
}

/* ===== HAMBURGER (mobile) ===== */
.hamburger {
  display: none;
  background: rgba(232, 185, 74, 0.1);
  border: 1px solid var(--border-glow);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--gold);
  cursor: pointer;
  font-size: 16px;
}

/* ===== DIVIDER ===== */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px 0;
  opacity: 0.3;
}

/* ===== LOADING SPINNER ===== */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(232, 185, 74, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ===== ALERT BOX ===== */
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}
.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
}
.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fde68a;
}
.alert-info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #93c5fd;
}

/* ===== CHECKBOX CUSTOM ===== */
.custom-check {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-glow);
  border-radius: 4px;
  background: rgba(3, 8, 24, 0.8);
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  flex-shrink: 0;
}

.custom-check:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.custom-check:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  color: #1a0e00;
  font-weight: 900;
}

.custom-check:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== PENILAIAN ROW ===== */
.penilaian-row {
  background: rgba(3, 8, 24, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}

.penilaian-row:hover {
  border-color: var(--border-glow);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(232, 185, 74, 0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(232, 185, 74, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
    z-index: 200;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .main-content {
    margin-left: 0;
  }
  .hamburger {
    display: flex;
    align-items: center;
  }
  .sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 199;
    display: none;
  }
  .sidebar-overlay.show {
    display: block;
  }
}

@media (max-width: 640px) {
  .main-content {
    padding: 14px;
  }
  .topbar {
    flex-wrap: wrap;
    gap: 8px;
  }
  .stat-card {
    padding: 14px;
  }
  .stat-number {
    font-size: 24px;
  }
  .login-card {
    padding: 30px 20px;
  }
  .modal-box {
    padding: 20px 16px;
  }
  .btn {
    padding: 7px 12px;
  }
}

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

.animate-in {
  animation: fadeInUp 0.4s ease forwards;
}

.animate-delay-1 {
  animation-delay: 0.05s;
  opacity: 0;
}
.animate-delay-2 {
  animation-delay: 0.1s;
  opacity: 0;
}
.animate-delay-3 {
  animation-delay: 0.15s;
  opacity: 0;
}
.animate-delay-4 {
  animation-delay: 0.2s;
  opacity: 0;
}
.animate-delay-5 {
  animation-delay: 0.25s;
  opacity: 0;
}

/* ===== GLOW EFFECTS ===== */
.glow-gold {
  box-shadow: 0 0 20px rgba(232, 185, 74, 0.2);
}
.text-gold {
  color: var(--gold);
}
.text-gold-light {
  color: var(--gold-light);
}
.text-crimson {
  color: var(--crimson-light);
}
.text-silver {
  color: var(--silver);
}
.border-gold {
  border-color: var(--border-glow) !important;
}

/* No data state */
.no-data {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-secondary);
}

.no-data i {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
  opacity: 0.4;
}
.no-data p {
  font-size: 14px;
}

/* Kelompok group header */
.group-header {
  background: rgba(232, 185, 74, 0.06);
  border-left: 3px solid var(--gold);
  padding: 8px 16px;
  margin: 12px 0 6px;
  border-radius: 0 6px 6px 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
  font-family: "Cinzel", serif;
}

/* Presensi table */
.presensi-peserta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  margin-bottom: 6px;
  transition: all 0.2s;
}

.presensi-peserta-row:hover {
  border-color: var(--border-glow);
  background: rgba(232, 185, 74, 0.03);
}

/* SweetAlert2 Custom */
.swal2-popup {
  background: linear-gradient(180deg, #0a1a45 0%, #060f2a 100%) !important;
  border: 1px solid rgba(232, 185, 74, 0.3) !important;
  color: #e8eef8 !important;
  font-family: "Nunito", sans-serif !important;
}
.swal2-title {
  color: #e8b94a !important;
  font-family: "Cinzel", serif !important;
}
.swal2-confirm {
  background: linear-gradient(135deg, #e8b94a, #b8892a) !important;
  color: #1a0e00 !important;
  font-weight: 700 !important;
}
.swal2-cancel {
  background: rgba(239, 68, 68, 0.2) !important;
  color: #f87171 !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
}
