/* ============================
   TransFleet Pro — CSS
   Palette: Noir, Bleu Marine, Orange
   ============================ */

:root {
  --navy: #0a1628;
  --navy2: #0f2044;
  --navy3: #162b57;
  --orange: #f97316;
  --orange-dark: #ea6c0a;
  --orange-glow: rgba(249, 115, 22, 0.25);
  --white: #ffffff;
  --light: #f0f4ff;
  --light2: #e2eaff;
  --text: #c8d6f0;
  --text-dim: #7a90b8;
  --border: rgba(255,255,255,0.07);
  --card-bg: rgba(15, 32, 68, 0.85);
  --card-border: rgba(249,115,22,0.15);
  --sidebar-w: 240px;
  --topbar-h: 64px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --radius: 12px;
  --radius-sm: 8px;
  --red: #ef4444;
  --red-bg: rgba(239,68,68,0.12);
  --green: #22c55e;
  --green-bg: rgba(34,197,94,0.12);
  --tomato: #e53935;
}

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

body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--navy3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ===== LOGIN PAGE ===== */
.login-overlay {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  z-index: 9999;
}

.login-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.login-bg-grid::after {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(15,32,68,0.3) 0%, var(--navy) 80%);
}

.login-card {
  position: relative; z-index: 1;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 48px 40px;
  width: 100%; max-width: 400px;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(249,115,22,0.1);
  text-align: center;
}

.login-logo {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px var(--orange-glow);
}

.login-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px; font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.login-sub {
  color: var(--text-dim);
  font-size: 13px;
  margin-bottom: 32px;
}

.login-form { display: flex; flex-direction: column; gap: 16px; }

.input-group-custom {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  transition: border-color 0.2s;
}
.input-group-custom:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.input-group-custom i {
  color: var(--text-dim);
  font-size: 15px;
  margin-right: 12px;
}
.input-group-custom input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  padding: 14px 0;
}
.input-group-custom input::placeholder { color: var(--text-dim); }

.login-error {
  background: var(--red-bg);
  border: 1px solid var(--red);
  color: var(--red);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  text-align: left;
}

.btn-login {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700;
  letter-spacing: 2px;
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px var(--orange-glow);
  margin-top: 8px;
}
.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.5);
}
.btn-login:active { transform: translateY(0); }

/* ===== SIDEBAR ===== */
.sidebar {
  position: fixed; top: 0; left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--navy2);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.sidebar-header {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
}
.sidebar-logo-icon {
  font-size: 28px;
  color: var(--orange);
  filter: drop-shadow(0 0 8px var(--orange));
}
.sidebar-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}
.sidebar-brand-sub {
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 3px;
  font-weight: 700;
}

.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
}

.sidebar-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.sidebar-link i { width: 18px; text-align: center; font-size: 15px; }
.sidebar-link:hover {
  background: rgba(249,115,22,0.1);
  color: var(--orange);
  border-color: rgba(249,115,22,0.2);
}
.sidebar-link.active {
  background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(249,115,22,0.08));
  color: var(--orange);
  border-color: rgba(249,115,22,0.3);
}
.sidebar-link.active i { color: var(--orange); }

.sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid var(--border);
}

.btn-logout {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  background: rgba(229,57,53,0.1);
  border: 1px solid rgba(229,57,53,0.3);
  border-radius: var(--radius-sm);
  color: var(--tomato);
  font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 600;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-logout:hover {
  background: rgba(229,57,53,0.2);
  border-color: var(--tomato);
  transform: translateX(4px);
}

/* ===== TOPBAR ===== */
.topbar {
  position: fixed;
  top: 0; left: var(--sidebar-w); right: 0;
  height: var(--topbar-h);
  background: rgba(10,22,40,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  display: flex; align-items: center;
  padding: 0 24px;
  gap: 16px;
  z-index: 999;
}
.sidebar-toggle {
  display: none;
  background: none; border: none;
  color: var(--text-dim);
  font-size: 20px; cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.2s;
}
.sidebar-toggle:hover { color: var(--orange); }

.topbar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  flex: 1;
}
.topbar-right {
  display: flex; align-items: center; gap: 20px;
}
.topbar-date {
  color: var(--text-dim);
  font-size: 13px;
}
.topbar-user {
  display: flex; align-items: center; gap: 8px;
  color: var(--text);
  font-size: 14px; font-weight: 500;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
}
.topbar-user i { color: var(--orange); }

/* ===== MAIN CONTENT ===== */
.main-content {
  margin-left: var(--sidebar-w);
  padding-top: var(--topbar-h);
  min-height: 100vh;
  padding-bottom: 32px;
}

.section-pane { padding: 28px 24px; }

.section-heading {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap; gap: 12px;
}
.section-heading h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}
.section-heading p {
  color: var(--text-dim); font-size: 13px; margin-top: 2px;
}

/* ===== STAT CARDS ===== */
.stat-card {
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-3px); }
.stat-card::before {
  content:'';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  border-radius: 0 var(--radius) 0 80px;
  opacity: 0.15;
}

.stat-blue { background: linear-gradient(135deg, rgba(13,71,161,0.4), rgba(21,101,192,0.2)); border-color: rgba(21,101,192,0.3); }
.stat-blue::before { background: #1565c0; }
.stat-orange { background: linear-gradient(135deg, rgba(249,115,22,0.3), rgba(249,115,22,0.1)); border-color: rgba(249,115,22,0.3); }
.stat-orange::before { background: var(--orange); }
.stat-dark { background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)); border-color: rgba(255,255,255,0.1); }
.stat-dark::before { background: #fff; }
.stat-green { background: linear-gradient(135deg, rgba(34,197,94,0.3), rgba(34,197,94,0.1)); border-color: rgba(34,197,94,0.3); }
.stat-green::before { background: var(--green); }

.stat-icon { font-size: 24px; margin-bottom: 12px; opacity: 0.8; }
.stat-blue .stat-icon { color: #64b5f6; }
.stat-orange .stat-icon { color: var(--orange); }
.stat-dark .stat-icon { color: #aab; }
.stat-green .stat-icon { color: var(--green); }

.stat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-lbl { font-size: 12px; color: var(--text-dim); margin-top: 4px; }

/* ===== CARD PANEL ===== */
.card-panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(8px);
}

.panel-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ===== TABLE ===== */
.table-fleet {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
}
.table-fleet thead tr {
  background: rgba(249,115,22,0.12);
}
.table-fleet th {
  padding: 10px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(249,115,22,0.2);
  white-space: nowrap;
}
.table-fleet td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
.table-fleet tbody tr {
  transition: background 0.15s;
}
.table-fleet tbody tr:hover {
  background: rgba(249,115,22,0.05);
}

.badge-pending {
  display: inline-block;
  background: rgba(249,115,22,0.2);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.4);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px; font-weight: 600;
}
.badge-done {
  display: inline-block;
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.3);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px; font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn-primary-action {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px var(--orange-glow);
  white-space: nowrap;
}
.btn-primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249,115,22,0.4);
}

.btn-add-sm {
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 6px;
  color: var(--orange);
  font-size: 12px; font-weight: 600;
  padding: 5px 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-add-sm:hover { background: rgba(249,115,22,0.3); }

.btn-action {
  background: none; border: none;
  width: 32px; height: 32px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.15s;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-edit { color: #64b5f6; }
.btn-edit:hover { background: rgba(100,181,246,0.15); color: #90caf9; }
.btn-km { color: var(--orange); }
.btn-km:hover { background: rgba(249,115,22,0.15); }
.btn-pdf { color: var(--green); }
.btn-pdf:hover { background: var(--green-bg); }
.btn-del { color: var(--red); }
.btn-del:hover { background: var(--red-bg); color: #f87171; }

/* ===== SEARCH & FILTER ===== */
.search-box {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  transition: border-color 0.2s;
}
.search-box:focus-within { border-color: var(--orange); }
.search-box i { color: var(--text-dim); margin-right: 10px; font-size: 14px; }
.search-box input {
  background: none; border: none; outline: none;
  color: var(--white); font-family: 'Barlow', sans-serif; font-size: 14px;
  padding: 11px 0; width: 100%;
}
.search-box input::placeholder { color: var(--text-dim); font-size: 13px; }

.form-filter {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-filter:focus { border-color: var(--orange); }
.form-filter option { background: var(--navy2); color: var(--white); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.modal-overlay.show { display: flex !important; }

.modal-box {
  background: var(--navy2);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 16px;
  width: 100%; max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.8);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(-10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-box-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.modal-box-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}
.danger-header { border-bottom-color: rgba(239,68,68,0.3); }
.danger-header h3 { color: var(--red); }

.modal-close {
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  color: var(--text-dim);
  width: 32px; height: 32px;
  border-radius: 6px;
  cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.modal-close:hover { background: rgba(239,68,68,0.15); color: var(--red); border-color: var(--red); }

.modal-body-custom { padding: 24px; }
.modal-footer-custom {
  display: flex; gap: 12px; justify-content: flex-end;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}

/* ===== FORM INPUTS (MODAL) ===== */
.form-label-custom {
  display: block;
  font-size: 12px; font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.req { color: var(--orange); }
.optional { color: var(--text-dim); text-transform: none; font-weight: 400; font-size: 11px; }

.form-input-custom {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input-custom::placeholder { color: var(--text-dim); }
.form-input-custom:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

/* ===== CALC PANEL ===== */
.calc-panel {
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 20px;
}
.calc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.calc-item {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 12px 8px;
}
.calc-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--orange);
}
.calc-sub { font-size: 11px; color: var(--text-dim); margin-top: 2px; }

/* ===== MODAL BUTTONS ===== */
.btn-cancel {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 500;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-cancel:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.btn-save {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 600;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px var(--orange-glow);
}
.btn-save:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(249,115,22,0.4); }

.btn-delete {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 600;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-delete:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(239,68,68,0.4); }

/* ===== ALERT DANGER ===== */
.alert-danger-custom {
  background: var(--red-bg);
  border: 1px solid rgba(239,68,68,0.4);
  border-radius: var(--radius-sm);
  color: #fca5a5;
  padding: 12px 16px;
  font-size: 13px;
  margin-top: 16px;
}

/* ===== DELETE MODAL ===== */
.delete-icon {
  font-size: 48px;
  color: var(--red);
  margin: 8px 0 16px;
  filter: drop-shadow(0 0 12px rgba(239,68,68,0.4));
}
.delete-msg { color: var(--text); font-size: 14px; margin-bottom: 16px; }

/* ===== HISTORIQUE ===== */
.histo-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
}
.histo-header {
  background: rgba(249,115,22,0.12);
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(249,115,22,0.15);
  flex-wrap: wrap; gap: 8px;
}
.histo-matricule {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 800;
  color: var(--orange);
  letter-spacing: 2px;
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-dim);
}
.empty-state i { font-size: 48px; margin-bottom: 16px; opacity: 0.4; display: block; }
.empty-state p { font-size: 15px; }

/* ===== TOAST ===== */
.toast-custom {
  position: fixed;
  bottom: 24px; right: 24px;
  background: linear-gradient(135deg, rgba(22,43,87,0.98), rgba(15,32,68,0.98));
  border: 1px solid rgba(34,197,94,0.4);
  border-left: 4px solid var(--green);
  border-radius: 10px;
  color: var(--green);
  padding: 14px 20px;
  font-size: 14px; font-weight: 500;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  animation: toastIn 0.3s ease;
  display: flex; align-items: center;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(100%); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
  }
  .sidebar-toggle { display: flex; }
  .topbar { left: 0; }
  .main-content { margin-left: 0; }

  .section-pane { padding: 20px 16px; }
  .stat-val { font-size: 22px; }
  .table-fleet th, .table-fleet td { padding: 8px 10px; font-size: 12px; }

  .login-card { padding: 36px 24px; }
  .login-title { font-size: 26px; }

  .modal-box { max-width: 100%; }
  .topbar-date { display: none; }

  .section-heading { flex-direction: column; }
}

@media (max-width: 480px) {
  .topbar-user span { display: none; }
  .stat-card { padding: 14px; }
  .stat-val { font-size: 18px; }
  .stat-lbl { font-size: 10px; }
}

/* Overlay for mobile sidebar */
.sidebar-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
}
.sidebar-backdrop.show { display: block; }

/* No km after row */
.no-km { color: var(--orange); font-style: italic; font-size: 12px; }
