/* CONSTRUCSEN GROUP - Budget Management System - CSS */
:root {
  --primary: #1e3a5f;
  --primary-light: #2d5986;
  --secondary: #e8750a;
  --secondary-light: #f59c2b;
  --success: #2ecc71;
  --warning: #f39c12;
  --danger: #e74c3c;
  --info: #3498db;
  --dark: #1a252f;
  --gray: #95a5a6;
  --light-gray: #ecf0f1;
  --white: #ffffff;
  --sidebar-width: 260px;
  --header-height: 65px;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #f0f2f5;
  color: #2c3e50;
  overflow-x: hidden;
}

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f0f2f5; }
::-webkit-scrollbar-thumb { background: #bdc3c7; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #95a5a6; }

/* ====== AUTH ====== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5986 50%, #e8750a 100%);
  position: relative;
  overflow: hidden;
}
.auth-page::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -200px;
  right: -200px;
}
.auth-card {
  background: white;
  border-radius: 20px;
  padding: 50px 45px;
  width: 420px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}
.auth-logo {
  text-align: center;
  margin-bottom: 35px;
}
.auth-logo img { width: 80px; margin-bottom: 10px; }
.auth-logo h1 { font-size: 1.6rem; color: var(--primary); font-weight: 800; }
.auth-logo span { font-size: 0.85rem; color: var(--gray); display: block; }

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

/* ====== SIDEBAR ====== */
.sidebar {
  width: var(--sidebar-width);
  background: linear-gradient(180deg, #1a252f 0%, #1e3a5f 100%);
  min-height: 100vh;
  position: fixed;
  left: 0; top: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.sidebar-logo {
  padding: 25px 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.sidebar-logo .logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.5px;
}
.sidebar-logo .logo-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sidebar-menu {
  flex: 1;
  padding: 15px 10px;
  overflow-y: auto;
}
.menu-section {
  margin-bottom: 5px;
}
.menu-section-title {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 12px 6px;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2px;
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.nav-item:hover {
  background: rgba(255,255,255,0.1);
  color: white;
  transform: translateX(3px);
}
.nav-item.active {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
  box-shadow: 0 4px 15px rgba(232,117,10,0.4);
}
.nav-item i {
  width: 20px;
  text-align: center;
  font-size: 0.95rem;
}
.nav-badge {
  margin-left: auto;
  background: var(--danger);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  min-width: 20px;
  text-align: center;
}

.sidebar-footer {
  padding: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
}
.user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.user-details { flex: 1; min-width: 0; }
.user-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-role {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
}

/* ====== MAIN CONTENT ====== */
.main-content {
  margin-left: var(--sidebar-width);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ====== HEADER ====== */
.topbar {
  height: var(--header-height);
  background: white;
  border-bottom: 1px solid #e8ecef;
  display: flex;
  align-items: center;
  padding: 0 25px;
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.topbar-title { flex: 1; }
.topbar-title h2 { font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.topbar-title p { font-size: 0.8rem; color: var(--gray); }
.topbar-actions { display: flex; align-items: center; gap: 12px; }

.btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #e8ecef;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: #7f8c8d;
  position: relative;
  font-size: 0.95rem;
}
.btn-icon:hover { background: var(--light-gray); border-color: #bdc3c7; color: var(--primary); }
.notif-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: var(--danger);
  color: white;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ====== PAGE CONTENT ====== */
.page-content { padding: 25px; flex: 1; }

/* ====== CARDS ====== */
.kpi-card {
  background: white;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.kpi-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.kpi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  border-radius: 16px 0 0 16px;
}
.kpi-card.primary::before { background: var(--primary); }
.kpi-card.success::before { background: var(--success); }
.kpi-card.warning::before { background: var(--warning); }
.kpi-card.danger::before { background: var(--danger); }
.kpi-card.info::before { background: var(--info); }
.kpi-card.secondary::before { background: var(--secondary); }

.kpi-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.kpi-card.primary .kpi-icon { background: rgba(30,58,95,0.1); color: var(--primary); }
.kpi-card.success .kpi-icon { background: rgba(46,204,113,0.1); color: var(--success); }
.kpi-card.warning .kpi-icon { background: rgba(243,156,18,0.1); color: var(--warning); }
.kpi-card.danger .kpi-icon { background: rgba(231,76,60,0.1); color: var(--danger); }
.kpi-card.info .kpi-icon { background: rgba(52,152,219,0.1); color: var(--info); }
.kpi-card.secondary .kpi-icon { background: rgba(232,117,10,0.1); color: var(--secondary); }

.kpi-value { font-size: 1.7rem; font-weight: 800; color: var(--dark); line-height: 1.2; }
.kpi-label { font-size: 0.8rem; color: var(--gray); font-weight: 500; margin-top: 3px; }
.kpi-sub { font-size: 0.75rem; margin-top: 8px; font-weight: 600; }
.kpi-sub.up { color: var(--danger); }
.kpi-sub.down { color: var(--success); }
.kpi-sub.neutral { color: var(--gray); }

/* ====== PROGRESS BAR ====== */
.progress-bar-wrap {
  background: #ecf0f1;
  border-radius: 10px;
  height: 8px;
  overflow: hidden;
  margin-top: 10px;
}
.progress-bar {
  height: 100%;
  border-radius: 10px;
  transition: width 0.8s ease;
}
.progress-bar.primary { background: linear-gradient(90deg, var(--primary), var(--primary-light)); }
.progress-bar.success { background: linear-gradient(90deg, #27ae60, #2ecc71); }
.progress-bar.warning { background: linear-gradient(90deg, #e67e22, #f39c12); }
.progress-bar.danger { background: linear-gradient(90deg, #c0392b, #e74c3c); }
.progress-bar.info { background: linear-gradient(90deg, #2980b9, #3498db); }
.progress-bar.secondary { background: linear-gradient(90deg, var(--secondary), var(--secondary-light)); }

/* ====== CARDS ====== */
.card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
}
.card-header {
  padding: 18px 22px;
  border-bottom: 1px solid #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-header h3 { font-size: 1rem; font-weight: 700; color: var(--primary); }
.card-body { padding: 20px 22px; }

/* ====== TABLE ====== */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
thead th {
  background: #f8fafc;
  color: #7f8c8d;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 15px;
  text-align: left;
  border-bottom: 2px solid #e8ecef;
  white-space: nowrap;
}
tbody tr { transition: background 0.15s; }
tbody tr:hover { background: #f8fafc; }
tbody td { padding: 12px 15px; border-bottom: 1px solid #f0f2f5; vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }

/* ====== BADGES / STATUS ====== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.badge-primary { background: rgba(30,58,95,0.12); color: var(--primary); }
.badge-success { background: rgba(46,204,113,0.15); color: #27ae60; }
.badge-warning { background: rgba(243,156,18,0.15); color: #e67e22; }
.badge-danger { background: rgba(231,76,60,0.15); color: #c0392b; }
.badge-info { background: rgba(52,152,219,0.15); color: #2980b9; }
.badge-secondary { background: rgba(232,117,10,0.15); color: var(--secondary); }
.badge-gray { background: #ecf0f1; color: #7f8c8d; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; }
.btn-secondary { background: linear-gradient(135deg, var(--secondary), var(--secondary-light)); color: white; }
.btn-success { background: linear-gradient(135deg, #27ae60, #2ecc71); color: white; }
.btn-danger { background: linear-gradient(135deg, #c0392b, #e74c3c); color: white; }
.btn-outline { background: white; border: 1.5px solid #e8ecef; color: #2c3e50; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { padding: 6px 12px; font-size: 0.8rem; }
.btn-xs { padding: 4px 8px; font-size: 0.75rem; border-radius: 7px; }

/* ====== FORMS ====== */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: #4a5568; margin-bottom: 7px; }
.form-label span { color: var(--danger); }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.875rem;
  color: #2c3e50;
  transition: all 0.2s;
  background: white;
  font-family: inherit;
}
.form-control:focus { outline: none; border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(30,58,95,0.1); }
.form-control.is-invalid { border-color: var(--danger); }
.input-group { position: relative; }
.input-group-text {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #95a5a6;
  font-size: 0.9rem;
}
.input-group .form-control { padding-left: 35px; }
.form-hint { font-size: 0.75rem; color: #95a5a6; margin-top: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; }

/* ====== MODAL ====== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: white;
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s ease;
}
.modal-lg { max-width: 850px; }
.modal-xl { max-width: 1100px; }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.modal-header {
  padding: 22px 25px;
  border-bottom: 1px solid #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.modal-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: #ecf0f1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #7f8c8d;
  transition: all 0.2s;
}
.modal-close:hover { background: #e74c3c; color: white; }
.modal-body { padding: 25px; overflow-y: auto; }
.modal-footer {
  padding: 18px 25px;
  border-top: 1px solid #f0f2f5;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* ====== ALERTS ====== */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 15px;
  border-left: 4px solid transparent;
}
.alert-success { background: rgba(46,204,113,0.1); border-color: var(--success); color: #27ae60; }
.alert-warning { background: rgba(243,156,18,0.1); border-color: var(--warning); color: #e67e22; }
.alert-danger { background: rgba(231,76,60,0.1); border-color: var(--danger); color: #c0392b; }
.alert-info { background: rgba(52,152,219,0.1); border-color: var(--info); color: #2980b9; }
.alert-primary { background: rgba(30,58,95,0.08); border-color: var(--primary); color: var(--primary); }

/* ====== FORECAST CARD ====== */
.forecast-card {
  background: linear-gradient(135deg, #1e3a5f, #2d5986);
  border-radius: 16px;
  padding: 25px;
  color: white;
  position: relative;
  overflow: hidden;
}
.forecast-card::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -80px;
  right: -50px;
}

/* ====== SCORE CARD ====== */
.score-bar {
  height: 10px;
  background: rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 5px;
}
.score-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 1s ease;
}

/* ====== TOAST ====== */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: white;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 450px;
  animation: slideInRight 0.3s ease;
  border-left: 4px solid var(--success);
}
.toast.warning { border-color: var(--warning); }
.toast.error { border-color: var(--danger); }
.toast.info { border-color: var(--info); }
@keyframes slideInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideOutRight { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(50px); } }

/* ====== TABS ====== */
.tabs { display: flex; gap: 5px; margin-bottom: 20px; flex-wrap: wrap; }
.tab-btn {
  padding: 8px 18px;
  border-radius: 10px;
  border: 1.5px solid #e8ecef;
  background: white;
  color: #7f8c8d;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.active { background: var(--primary); border-color: var(--primary); color: white; }

/* ====== EMPTY STATE ====== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #95a5a6;
}
.empty-state i { font-size: 3.5rem; margin-bottom: 15px; display: block; opacity: 0.4; }
.empty-state h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; color: #7f8c8d; }
.empty-state p { font-size: 0.85rem; }

/* ====== FILTER BAR ====== */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #e8ecef;
  flex-wrap: wrap;
}
.filter-bar .form-control { max-width: 200px; padding: 8px 12px; font-size: 0.82rem; }
.search-input {
  position: relative;
  flex: 1;
  max-width: 280px;
}
.search-input i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #95a5a6;
  font-size: 0.85rem;
}
.search-input input { padding-left: 33px; }

/* ====== STATS ROW ====== */
.stats-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 15px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e8ecef;
}
.stat-item .value { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.stat-item .label { font-size: 0.75rem; color: #95a5a6; margin-top: 3px; }

/* ====== LOADING ====== */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #e8ecef;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ====== CHART CONTAINER ====== */
.chart-container { position: relative; }
.chart-container canvas { max-height: 300px; }

/* ====== NOTIFICATION PANEL ====== */
.notif-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 360px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  z-index: 200;
  overflow: hidden;
  border: 1px solid #e8ecef;
}
.notif-header {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f2f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--primary);
}
.notif-item {
  padding: 12px 20px;
  border-bottom: 1px solid #f0f2f5;
  display: flex;
  gap: 12px;
  cursor: pointer;
  transition: background 0.15s;
}
.notif-item:hover { background: #f8fafc; }
.notif-item.unread { background: rgba(30,58,95,0.04); }
.notif-item .notif-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ====== PAGE TRANSITIONS ====== */
.page { animation: pageIn 0.25s ease; }
@keyframes pageIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
}

/* ====== MONTANT FORMAT ====== */
.montant { font-weight: 700; font-variant-numeric: tabular-nums; }
.montant-positive { color: var(--success); }
.montant-negative { color: var(--danger); }
.montant-neutral { color: var(--primary); }

/* ====== WORKFLOW TIMELINE ====== */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0; bottom: 0;
  width: 2px;
  background: #e8ecef;
}
.timeline-item { position: relative; padding-bottom: 20px; }
.timeline-dot {
  position: absolute;
  left: -24px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #bdc3c7;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #bdc3c7;
}
.timeline-dot.success { background: var(--success); box-shadow: 0 0 0 2px rgba(46,204,113,0.3); }
.timeline-dot.warning { background: var(--warning); box-shadow: 0 0 0 2px rgba(243,156,18,0.3); }
.timeline-dot.danger { background: var(--danger); box-shadow: 0 0 0 2px rgba(231,76,60,0.3); }

/* ====== BREADCRUMB ====== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #95a5a6;
  margin-bottom: 20px;
}
.breadcrumb span { cursor: pointer; transition: color 0.2s; }
.breadcrumb span:hover { color: var(--primary); }
.breadcrumb span.active { color: var(--primary); font-weight: 600; }
.breadcrumb i { font-size: 0.7rem; }
