/* ============================================================
   CSC / Retailer API Service Portal
   Custom Stylesheet — Green + Blue Professional Theme
   Powered By: Mr.Supro
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

:root {
  --primary:       #0f6e3d;
  --primary-dark:  #094d2b;
  --primary-light: #e8f5ee;
  --accent:        #1a56db;
  --accent-light:  #ebf0ff;
  --success:       #0e9f6e;
  --warning:       #f59e0b;
  --danger:        #e02424;
  --info:          #0891b2;
  --dark:          #111827;
  --gray:          #6b7280;
  --light:         #f9fafb;
  --border:        #e5e7eb;
  --sidebar-w:     260px;
  --header-h:      64px;
  --radius:        12px;
  --shadow:        0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg:     0 8px 32px rgba(0,0,0,.12);
  --font:          'Plus Jakarta Sans', sans-serif;
  --mono:          'DM Mono', monospace;
  --transition:    all .22s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: #f0f4f8;
  color: var(--dark);
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ── AUTH PAGES ── */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f6e3d 0%, #094d2b 40%, #1a56db 100%);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.auth-wrapper::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  top: -200px; right: -200px;
}
.auth-wrapper::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  bottom: -150px; left: -100px;
}
.auth-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
  width: 100%;
  max-width: 480px;
  padding: 40px;
  position: relative;
  z-index: 1;
}
.auth-logo {
  text-align: center;
  margin-bottom: 28px;
}
.auth-logo .logo-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 12px;
  box-shadow: 0 8px 24px rgba(15,110,61,.3);
}
.auth-logo h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.3px;
}
.auth-logo p { color: var(--gray); font-size: 13px; margin-top: 4px; }
.auth-divider {
  text-align: center;
  position: relative;
  margin: 20px 0;
  color: var(--gray);
  font-size: 12px;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--border);
}
.auth-divider::before { left: 0; }
.auth-divider::after  { right: 0; }

/* ── SIDEBAR ── */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: linear-gradient(180deg, #0a4d2a 0%, #0f6e3d 50%, #0d5c34 100%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  overflow: hidden;
}
.sidebar-brand {
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.sidebar-brand .brand-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.sidebar-brand .brand-text h6 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
.sidebar-brand .brand-text span {
  color: rgba(255,255,255,.55);
  font-size: 11px;
}
.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}
.sidebar-nav::-webkit-scrollbar { width: 3px; }
.sidebar-nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); }
.nav-section-label {
  padding: 10px 20px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 0;
  transition: var(--transition);
  position: relative;
  margin: 1px 8px;
  border-radius: 8px;
}
.sidebar-nav .nav-link i {
  width: 20px;
  text-align: center;
  font-size: 15px;
  flex-shrink: 0;
}
.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.sidebar-nav .nav-link.active::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: #fff;
  border-radius: 0 3px 3px 0;
}
.sidebar-nav .nav-link .badge {
  margin-left: auto;
  font-size: 10px;
  padding: 2px 7px;
}
.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-user .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.sidebar-user .user-info h6 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}
.sidebar-user .user-info span {
  color: rgba(255,255,255,.5);
  font-size: 11px;
}

/* ── MAIN CONTENT ── */
.main-wrapper {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

/* ── TOPBAR ── */
.topbar {
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.topbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--gray);
  cursor: pointer;
  padding: 4px;
}
.topbar-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  flex: 1;
}
.topbar-title span {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
  display: block;
  line-height: 1;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wallet-badge {
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}
.topbar-btn:hover { background: var(--light); color: var(--dark); }
.topbar-btn .notif-dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 8px; height: 8px;
  background: var(--danger);
  border-radius: 50%;
  border: 2px solid #fff;
}
.topbar-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

/* ── PAGE CONTENT ── */
.page-content {
  flex: 1;
  padding: 24px;
}
.page-header {
  margin-bottom: 24px;
}
.page-header h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.3px;
}
.page-header p { color: var(--gray); font-size: 13px; margin-top: 2px; }
.breadcrumb { font-size: 12px; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--gray); }

/* ── STAT CARDS ── */
.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  border-radius: 4px 0 0 4px;
}
.stat-card.green::after  { background: var(--primary); }
.stat-card.blue::after   { background: var(--accent); }
.stat-card.orange::after { background: var(--warning); }
.stat-card.red::after    { background: var(--danger); }
.stat-card.teal::after   { background: var(--info); }
.stat-card.purple::after { background: #7c3aed; }

.stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.stat-icon.green  { background: var(--primary-light); color: var(--primary); }
.stat-icon.blue   { background: var(--accent-light);  color: var(--accent); }
.stat-icon.orange { background: #fff7ed; color: var(--warning); }
.stat-icon.red    { background: #fef2f2; color: var(--danger); }
.stat-icon.teal   { background: #ecfeff; color: var(--info); }
.stat-icon.purple { background: #f5f3ff; color: #7c3aed; }

.stat-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -.5px;
}
.stat-label {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
  font-weight: 500;
}
.stat-change {
  font-size: 11px;
  font-weight: 600;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.stat-change.up   { color: var(--success); }
.stat-change.down { color: var(--danger); }

/* ── CARDS ── */
.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}
.card-header h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-header h5 i { color: var(--primary); }
.card-body { padding: 20px; }

/* ── FORMS ── */
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-family: var(--font);
  transition: var(--transition);
  background: #fff;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15,110,61,.12);
  outline: none;
}
.form-control.is-invalid { border-color: var(--danger); }
.input-group-text {
  background: var(--light);
  border: 1.5px solid var(--border);
  color: var(--gray);
  font-size: 14px;
}

/* ── BUTTONS ── */
.btn {
  font-family: var(--font);
  font-weight: 600;
  font-size: 13.5px;
  border-radius: 8px;
  padding: 9px 18px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #0d5c34);
  color: #fff;
  box-shadow: 0 4px 12px rgba(15,110,61,.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #0d5c34, var(--primary-dark));
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15,110,61,.35);
  color: #fff;
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent), #1648c0);
  color: #fff;
  box-shadow: 0 4px 12px rgba(26,86,219,.3);
}
.btn-accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(26,86,219,.35);
  color: #fff;
}
.btn-outline-primary {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
}
.btn-danger  { background: var(--danger);  color: #fff; }
.btn-warning { background: var(--warning); color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-sm { padding: 6px 12px; font-size: 12px; border-radius: 6px; }
.btn-lg { padding: 13px 28px; font-size: 15px; border-radius: 10px; }
.btn-block { width: 100%; justify-content: center; }

/* ── BADGES ── */
.badge {
  font-family: var(--font);
  font-weight: 600;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
}
.badge-success  { background: #d1fae5; color: #065f46; }
.badge-danger   { background: #fee2e2; color: #991b1b; }
.badge-warning  { background: #fef3c7; color: #92400e; }
.badge-info     { background: #e0f2fe; color: #075985; }
.badge-primary  { background: var(--primary-light); color: var(--primary-dark); }
.badge-secondary{ background: #f3f4f6; color: #374151; }

/* ── TABLES ── */
.table-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.table {
  margin: 0;
  font-size: 13px;
}
.table thead th {
  background: #f8fafc;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  white-space: nowrap;
}
.table tbody td {
  padding: 12px 16px;
  vertical-align: middle;
  border-bottom: 1px solid #f3f4f6;
  color: var(--dark);
}
.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr:hover { background: #fafbfc; }
.table-striped tbody tr:nth-of-type(odd) { background: #fafbfc; }

/* ── SERVICE CARDS ── */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: block;
  box-shadow: var(--shadow);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  text-decoration: none;
}
.service-card .svc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 12px;
}
.service-card h6 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.service-card p {
  font-size: 11.5px;
  color: var(--gray);
  margin: 0;
}
.service-card .price-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 10px;
}

/* ── WALLET CARD ── */
.wallet-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0d5c34 50%, var(--accent) 100%);
  border-radius: 16px;
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.wallet-hero::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  top: -60px; right: -60px;
}
.wallet-hero::after {
  content: '';
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  bottom: -40px; left: 20px;
}
.wallet-hero .balance-label {
  font-size: 12px;
  opacity: .75;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.wallet-hero .balance-amount {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 6px 0;
}
.wallet-hero .balance-id {
  font-size: 12px;
  opacity: .6;
  font-family: var(--mono);
}

/* ── RESULT BOX ── */
.result-box {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.result-row:last-child { border-bottom: none; }
.result-row .label { color: var(--gray); font-weight: 500; }
.result-row .value { font-weight: 700; color: var(--dark); }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 24px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 20px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 4px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-item .time {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 2px;
}
.timeline-item .text {
  font-size: 13px;
  color: var(--dark);
  font-weight: 500;
}

/* ── LOADER ── */
.page-loader {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.spinner-ring {
  width: 48px; height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-text {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

/* ── COUNTDOWN ── */
.countdown-box {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 10px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #92400e;
  font-weight: 600;
}
.countdown-box i { color: var(--warning); font-size: 16px; }
#countdown-timer { font-family: var(--mono); font-size: 16px; color: var(--danger); }

/* ── PRINT STYLES ── */
@media print {
  .sidebar, .topbar, .no-print { display: none !important; }
  .main-wrapper { margin-left: 0 !important; }
  .print-area {
    border: 2px solid #0f6e3d;
    border-radius: 8px;
    padding: 20px;
  }
}
.print-header {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 20px 24px;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.print-header h4 { font-size: 18px; font-weight: 800; margin: 0; }
.print-header p  { font-size: 12px; opacity: .8; margin: 0; }
.print-body { padding: 20px 24px; border: 1px solid var(--border); border-top: none; border-radius: 0 0 10px 10px; }
.print-footer {
  text-align: center;
  padding: 12px;
  font-size: 11px;
  color: var(--gray);
  border-top: 1px dashed var(--border);
  margin-top: 16px;
}

/* ── ALERTS ── */
.alert {
  border-radius: 10px;
  border: none;
  padding: 14px 18px;
  font-size: 13.5px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert i { font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.alert-success { background: #d1fae5; color: #065f46; }
.alert-danger   { background: #fee2e2; color: #991b1b; }
.alert-warning  { background: #fef3c7; color: #92400e; }
.alert-info     { background: #e0f2fe; color: #075985; }

/* ── MODALS ── */
.modal-content {
  border: none;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
}
.modal-header {
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
  border-radius: 16px 16px 0 0;
}
.modal-header .modal-title {
  font-size: 16px;
  font-weight: 700;
}
.modal-body { padding: 24px; }
.modal-footer {
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}

/* ── UPLOAD ZONE ── */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--light);
}
.upload-zone:hover, .upload-zone.dragover {
  border-color: var(--primary);
  background: var(--primary-light);
}
.upload-zone i { font-size: 32px; color: var(--gray); margin-bottom: 8px; }
.upload-zone p { font-size: 13px; color: var(--gray); margin: 0; }
.upload-zone .upload-hint { font-size: 11px; color: #9ca3af; margin-top: 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .main-wrapper {
    margin-left: 0;
  }
  .topbar-toggle { display: flex; }
  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 999;
  }
  .sidebar-overlay.show { display: block; }
}
@media (max-width: 575.98px) {
  .page-content { padding: 16px; }
  .auth-card { padding: 28px 20px; }
  .stat-value { font-size: 22px; }
  .wallet-hero .balance-amount { font-size: 30px; }
}

/* ── UTILITIES ── */
.text-primary { color: var(--primary) !important; }
.text-accent  { color: var(--accent)  !important; }
.bg-primary-light { background: var(--primary-light) !important; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fs-12  { font-size: 12px; }
.fs-13  { font-size: 13px; }
.gap-8  { gap: 8px; }
.rounded-10 { border-radius: 10px; }
.mono { font-family: var(--mono); }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp .4s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }

/* ── DATATABLES OVERRIDE ── */
.dataTables_wrapper .dataTables_filter input {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-family: var(--font);
  font-size: 13px;
}
.dataTables_wrapper .dataTables_length select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 4px 8px;
  font-family: var(--font);
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  border-radius: 6px !important;
  font-size: 12px !important;
  font-family: var(--font) !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}