/* === NOGAL SISTEMA — Premium Light Theme === */
:root {
  --bg-page: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --bg-sidebar: #0f172a;
  --bg-nav-active: #f0f4ff;
  --text-primary: #111827;
  --text-secondary: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --positive: #16a34a;
  --positive-bg: #f0fdf4;
  --negative: #dc2626;
  --negative-bg: #fef2f2;
  --warning: #ea580c;
  --warning-bg: #fff7ed;
  --info: #2563eb;
  --info-bg: #eff6ff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --sidebar-width: 240px;
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { font-size: 14px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === APP LAYOUT === */
.app {
  display: flex;
  min-height: 100vh;
}

/* === SIDEBAR === */
.sidebar {
  width: var(--sidebar-width);
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  z-index: 100;
  overflow-y: auto;
}

.sidebar-brand {
  padding: 24px 20px 20px;
  border-bottom: 1px solid var(--border);
}
.sidebar-logo {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 8px;
}
.sidebar-logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}
.sidebar-logo-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

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

.nav-section {
  margin-bottom: 2px;
}
.nav-section-title {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 16px 20px 6px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-radius: 0;
  border-left: 3px solid transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.nav-item:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  transform: translateX(2px);
}
.nav-item.active {
  background: var(--bg-nav-active);
  color: var(--info);
  font-weight: 600;
  border-left-color: var(--info);
}
.nav-item svg { opacity: 0.45; flex-shrink: 0; transition: opacity var(--transition-fast); }
.nav-item:hover svg { opacity: 0.7; }
.nav-item.active svg { opacity: 1; color: var(--info); }

.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}
.sidebar-footer-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.sidebar-footer-role {
  font-size: 11px;
  color: var(--text-muted);
}

/* === MAIN CONTENT === */


/* === MOBILE HEADER === */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  z-index: 99;
  backdrop-filter: blur(8px);
}
.mobile-menu-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 4px;
}
.mobile-title {
  font-weight: 600;
  font-size: 15px;
}

/* === PAGE HEADER === */
.page-header {
  margin-bottom: 24px;
}
.page-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.page-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* === GREETING === */
.greeting {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.greeting-sub, .greeting-date {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 24px;
}

/* === KPI GRID === */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.kpi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}
.kpi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
/* Accent top borders */
.kpi-card.accent-blue { border-top: 3px solid var(--info); }
.kpi-card.accent-green { border-top: 3px solid var(--positive); }
.kpi-card.accent-red { border-top: 3px solid var(--negative); }
.kpi-card.accent-orange { border-top: 3px solid var(--warning); }

.kpi-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.kpi-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.kpi-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 6px;
}
.kpi-trend {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 6px;
}
.kpi-trend.up { color: var(--positive); }
.kpi-trend.down { color: var(--negative); }

/* === VALUE COLORS === */
.positive, .val-positive { color: var(--positive) !important; }
.negative, .val-negative { color: var(--negative) !important; }
.warning, .val-warning { color: var(--warning) !important; }

/* === CARDS === */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  overflow: hidden;
}
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-light);
}
.card-body {
  padding: 24px;
}
.card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

/* === DATA TABLE === */
.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table thead th {
  background: #f9fafb;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  position: sticky;
  top: 0;
  z-index: 1;
}
.data-table tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--text-secondary);
}
.data-table tbody tr {
  transition: background var(--transition-fast);
}
.data-table tbody tr:hover { background: var(--bg-card-hover); }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:nth-child(even) { background: rgba(249,250,251,0.5); }
.data-table tbody tr:nth-child(even):hover { background: var(--bg-card-hover); }
.data-table .num, .num { text-align: right; font-variant-numeric: tabular-nums; }
.data-table .total-row td {
  font-weight: 700;
  color: var(--text-primary);
  background: var(--border-light);
  border-bottom: 2px solid var(--border);
}
.data-table .over-budget { color: var(--negative); font-weight: 600; }

/* === ALERTS === */
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 500;
  border-left: 4px solid;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.alert-critical {
  background: var(--negative-bg);
  color: var(--negative);
  border: 1px solid #fecaca;
  border-left: 4px solid var(--negative);
}
.alert-critical::before { background: var(--negative); }
.alert-warning {
  background: var(--warning-bg);
  color: var(--warning);
  border: 1px solid #fed7aa;
  border-left: 4px solid var(--warning);
}
.alert-warning::before { background: var(--warning); }
.alert-info {
  background: var(--info-bg);
  color: var(--info);
  border: 1px solid #bfdbfe;
  border-left: 4px solid var(--info);
}
.alert-info::before { background: var(--info); }
.alert-success {
  background: var(--positive-bg);
  color: var(--positive);
  border: 1px solid #bbf7d0;
  border-left: 4px solid var(--positive);
}
.alert-success::before { background: var(--positive); }

/* === BADGES === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.badge-green { background: var(--positive-bg); color: var(--positive); }
.badge-red { background: var(--negative-bg); color: var(--negative); }
.badge-orange { background: var(--warning-bg); color: var(--warning); }
.badge-blue { background: var(--info-bg); color: var(--info); }
.badge-gray { background: var(--border-light); color: var(--text-muted); }
.badge-positive { background: var(--positive-bg); color: var(--positive); }
.badge-negative { background: var(--negative-bg); color: var(--negative); }
.badge-warning { background: var(--warning-bg); color: var(--warning); }
.badge-neutral { background: var(--border-light); color: var(--text-muted); }

/* === GRIDS === */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

/* === CHART === */
.chart-container {
  position: relative;
  width: 100%;
  height: 280px;
  padding: 8px 0;
}

/* === EMPTY STATE === */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
  font-size: 14px;
}

/* === STAT ROW === */
.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition-fast);
}
.stat-row:hover { background: rgba(249,250,251,0.6); }
.stat-row:last-child { border-bottom: none; }
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}
.stat-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  gap: 6px;
}
.btn-primary {
  background: var(--info);
  color: #fff;
  box-shadow: 0 1px 2px rgba(37,99,235,0.2);
}
.btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 2px 6px rgba(37,99,235,0.3);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: #d1d5db;
}
.btn-sm {
  padding: 5px 12px;
  font-size: 12px;
}
.btn-pay {
  background: var(--info);
  color: #fff;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 1px 2px rgba(37,99,235,0.15);
}
.btn-pay:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(37,99,235,0.25);
}

/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.15s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  max-width: 480px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.2s ease;
}
@keyframes slideUp { from { transform: translateY(8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.modal p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* === FORM === */
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: border var(--transition-fast), box-shadow var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--info);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* === PROGRESS BAR === */
.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  margin: 8px 0;
}
.progress-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.5s ease;
  background: var(--info);
}
.progress-fill.progress-green, .progress-fill.green { background: var(--positive); }
.progress-fill.blue { background: var(--info); }
.progress-fill.red { background: var(--negative); }
.progress-fill.orange { background: var(--warning); }

/* === MODULE GRID (Dashboard Home) === */
.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  padding: 4px 20px 20px;
}
.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all var(--transition-med);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.module-card:hover {
  border-color: var(--info);
  box-shadow: 0 0 0 1px var(--info);
  transform: translateY(-1px);
}
.module-card .module-icon {
  font-size: 20px;
  margin-bottom: 4px;
}
.module-card .module-name {
  font-size: 13px;
  font-weight: 600;
}
.module-card .module-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Legacy module-link (still used if needed) */
.module-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition-med);
  text-align: center;
}
.module-link:hover {
  background: var(--bg-card-hover);
  border-color: var(--info);
  color: var(--info);
  transform: translateY(-1px);
}

/* === FULL WIDTH CARD === */
.full-width { grid-column: 1 / -1; }

/* === SECTION GRID (2 columns) === */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

/* === SUMMARY CARDS (Cash Flow etc) === */
.summary-card {
  padding: 16px 24px;
}
.summary-card .stat-row { padding: 10px 0; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.25s;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .mobile-header {
    display: flex;
  }
  .main-content {
    margin-left: 0;
    padding: 72px 16px 24px;
  }
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-2, .grid-3, .section-grid {
    grid-template-columns: 1fr;
  }
  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-row { padding: 10px 16px; }
}

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

/* === LOADING SPINNER === */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px;
  color: var(--text-light);
  font-size: 13px;
}
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--info);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === FUNNEL BARS === */
.funnel-stage {
  margin-bottom: 16px;
  padding: 0 24px;
}
.funnel-bar-bg {
  width: 100%;
  height: 32px;
  background: var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 6px;
}
.funnel-bar-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 0.3s;
  min-width: 2%;
}
.funnel-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.funnel-label-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.funnel-label-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
.funnel-rate {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

/* === SELECTION === */
::selection { background: rgba(37,99,235,0.12); }

.kpi-grid-6{display:grid;grid-template-columns:repeat(6,1fr);gap:16px;margin-bottom:24px}
.kpi-grid-5{display:grid;grid-template-columns:repeat(5,1fr);gap:16px;margin-bottom:24px}
@media(max-width:1200px){.kpi-grid-6,.kpi-grid-5{grid-template-columns:repeat(3,1fr)}}
@media(max-width:768px){.kpi-grid-6,.kpi-grid-5{grid-template-columns:repeat(2,1fr)}}

.main-content {
  margin-left: var(--sidebar-width, 240px);
  padding: 32px;
  min-height: 100vh;
  width: calc(100% - var(--sidebar-width, 240px));
}

/* === SIDEBAR DARK THEME === */
.sidebar {
  background: #0f172a !important;
  color: #e2e8f0;
}
.sidebar-brand {
  border-bottom-color: #1e293b !important;
}
.sidebar-logo-text {
  color: #f8fafc !important;
  font-weight: 700;
}
.sidebar-logo-sub {
  color: #64748b !important;
}
.nav-section-title {
  color: #475569 !important;
}
.nav-item {
  color: #94a3b8 !important;
}
.nav-item:hover {
  color: #e2e8f0 !important;
  background: #1e293b !important;
}
.nav-item.active {
  color: #ffffff !important;
  background: #1e293b !important;
  border-left: 3px solid #3b82f6 !important;
}
.sidebar-footer {
  border-top-color: #1e293b !important;
}
.user-name {
  color: #f1f5f9 !important;
}
.user-role {
  color: #64748b !important;
}
.sidebar-footer a {
  color: #64748b !important;
}
.sidebar-footer a:hover {
  color: #94a3b8 !important;
}

/* === CARDS WITH MORE DEPTH === */
.card {
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04) !important;
}
.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

/* === KPI CARDS WITH SUBTLE BACKGROUNDS === */
.kpi-card.accent-blue {
  border-top: 3px solid #3b82f6;
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}
.kpi-card.accent-green {
  border-top: 3px solid #16a34a;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}
.kpi-card.accent-red {
  border-top: 3px solid #dc2626;
  background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}
.kpi-card.accent-orange {
  border-top: 3px solid #ea580c;
  background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
}

/* === BETTER SECTION TITLES === */
.card-title {
  font-size: 15px !important;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.01em;
}

/* === ALERTS WITH ICONS === */
.alert-critical {
  background: #fef2f2 !important;
  border-left: 4px solid #dc2626 !important;
  color: #991b1b !important;
}
.alert-warning {
  background: #fffbeb !important;
  border-left: 4px solid #f59e0b !important;
  color: #92400e !important;
}

/* === MODULE CARDS === */
.module-card {
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}
.module-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px #3b82f6, 0 4px 12px rgba(59,130,246,0.1);
  transform: translateY(-2px);
}

/* === CHART CARD === */
.chart-container {
  padding: 8px 0;
}

/* === TABLE HEADER === */
.data-table thead th {
  background: #f8fafc !important;
  font-weight: 600;
  color: #475569;
}
.data-table tbody tr:nth-child(even) {
  background: #fafbfc;
}

/* === PAGE HEADER ACCENT === */
.page-title {
  color: #0f172a;
  font-size: 24px !important;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* === BADGES MORE VIVID === */
.badge-green { background: #dcfce7 !important; color: #15803d !important; }
.badge-red { background: #fee2e2 !important; color: #b91c1c !important; }
.badge-orange { background: #ffedd5 !important; color: #c2410c !important; }
.badge-blue { background: #dbeafe !important; color: #1d4ed8 !important; }

/* === BUTTONS === */
.btn-primary {
  background: #2563eb !important;
  color: white !important;
  box-shadow: 0 1px 3px rgba(37,99,235,0.3);
}
.btn-primary:hover {
  background: #1d4ed8 !important;
  box-shadow: 0 2px 8px rgba(37,99,235,0.4);
}
