/* ============================================================
   CarflowX - Car Rental Management
   Complete Stylesheet
   ============================================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1e293b;
  background: #F1F5F9;
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: #1e293b;
}

a {
  color: #4F46E5;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #4338CA;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 180px;
  background: linear-gradient(180deg, #1E293B, #0f172a);
  border-right: none;
  display: flex;
  flex-direction: column;
  z-index: 100;
  overflow-y: auto;
  transition: width 0.25s ease, transform 0.25s ease;
}

.sidebar .logo-area {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar .logo-area img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.sidebar .company-name {
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  color: #ffffff;
  line-height: 1.3;
}

.sidebar .user-name {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}

.sidebar .role {
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
}

.sidebar nav {
  padding: 12px 0;
  flex: 1;
}

.sidebar .nav-item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  border-left: 3px solid transparent;
  cursor: pointer;
  gap: 0;
}

.sidebar .nav-item:hover {
  background: rgba(255,255,255,0.08);
  color: #e2e8f0;
}

.sidebar .nav-item.active {
  color: #ffffff;
  background: rgba(79,70,229,0.25);
  border-left-color: #4F46E5;
  font-weight: 500;
}

.sidebar .nav-item .icon {
  font-size: 20px;
  margin-right: 12px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.sidebar .nav-item .badge-lock {
  margin-left: auto;
  font-size: 14px;
  color: #64748b;
}

.sidebar .nav-item .arrow {
  margin-left: auto;
  font-size: 18px;
  transition: transform 0.2s;
}

.sidebar .nav-item.open .arrow {
  transform: rotate(90deg);
}

.sidebar .sub-menu {
  display: none;
}

.sidebar .nav-item.open + .sub-menu,
.sidebar .open > .sub-menu {
  display: block;
}

.sidebar .sub-menu .nav-item {
  padding-left: 56px;
  font-size: 13px;
}

.sidebar .bottom-section {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 0;
  margin-top: auto;
}

.sidebar .bin-checker-btn {
  margin: 8px 16px;
  border: 1px solid rgba(99,102,241,0.4);
  color: #818CF8;
  border-radius: 6px;
  padding: 8px 16px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  justify-content: center;
}

.sidebar .bin-checker-btn:hover {
  background: #EEF2FF;
}

/* ============================================================
   TOP HEADER
   ============================================================ */
.top-header {
  position: fixed;
  top: 0;
  left: 180px;
  right: 0;
  height: 52px;
  background: linear-gradient(135deg, #1E293B, #334155);
  display: flex;
  align-items: center;
  padding: 0 24px;
  z-index: 99;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.top-header a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}

.top-header a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.15);
}

.top-header .right-section {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-header .header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-header .menu-toggle {
  display: none;
  background: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
}

.top-header .header-title {
  font-weight: 600;
  font-size: 15px;
  color: white;
}

/* ── Profile Dropdown ─────────────────────────────────────── */
.profile-trigger {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-size: 13px; font-weight: 700;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}
.profile-trigger:hover {
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
  transform: scale(1.05);
}
.profile-dropdown {
  position: absolute;
  right: 0; top: calc(100% + 8px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.04);
  min-width: 270px;
  padding: 0;
  z-index: 9999;
  overflow: hidden;
  animation: dropdownFadeIn 0.15s ease-out;
}
@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.profile-dropdown-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.profile-avatar-lg {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.profile-dropdown-divider {
  border-top: 1px solid #f1f5f9;
}
.profile-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  font-size: 13px; font-weight: 500;
  color: #334155;
  text-decoration: none;
  transition: background 0.12s;
  cursor: pointer;
}
.profile-dropdown-item:hover {
  background: #f1f5f9;
}
.profile-dropdown-item .material-symbols-outlined {
  font-size: 20px; color: #64748b;
}
.profile-dropdown-danger {
  color: #dc2626;
}
.profile-dropdown-danger .material-symbols-outlined {
  color: #dc2626;
}
.profile-dropdown-danger:hover {
  background: #fef2f2;
}

/* ── Support Page ─────────────────────────────────────────── */
.support-guarantee {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #a7f3d0;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.support-guarantee .material-symbols-outlined {
  font-size: 28px; color: #059669;
  flex-shrink: 0;
}
.support-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 20px;
}
.support-form-card, .support-tickets-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}
.support-form-header {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}
.support-form-header h3 {
  margin: 0; font-size: 15px; font-weight: 600; color: #1e293b;
}
.support-form-header .material-symbols-outlined {
  font-size: 22px; color: #4F46E5;
}
.support-form-card form {
  padding: 20px;
}
.ticket-count {
  margin-left: auto;
  background: #4F46E5;
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 2px 9px;
  border-radius: 12px;
  min-width: 20px; text-align: center;
}
.support-tickets-list {
  max-height: 540px;
  overflow-y: auto;
}
.support-empty {
  padding: 48px 20px;
  text-align: center;
}
.ticket-card {
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: background 0.12s;
}
.ticket-card:last-child { border-bottom: none; }
.ticket-card:hover { background: #f8fafc; }
.ticket-card-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  gap: 12px;
}
.ticket-card-left {
  display: flex; align-items: center; gap: 10px;
  min-width: 0; flex: 1;
}
.ticket-card-subject {
  font-size: 13px; font-weight: 600; color: #1e293b;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ticket-card-meta {
  font-size: 11px; color: #94a3b8; margin-top: 2px;
}
.ticket-card-right {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.ticket-priority, .ticket-status {
  font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 20px;
  display: inline-flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.ticket-card-detail {
  padding: 0 18px 16px 48px;
}
.ticket-message {
  font-size: 13px; color: #475569; line-height: 1.6;
  background: #f8fafc; padding: 12px 16px;
  border-radius: 10px; border: 1px solid #e2e8f0;
}
.ticket-reply {
  margin-top: 10px;
  background: #EEF2FF; padding: 12px 16px;
  border-radius: 10px; border: 1px solid #C7D2FE;
  font-size: 13px; color: #1e40af; line-height: 1.6;
}
.ticket-reply-header {
  display: flex; align-items: center; gap: 6px;
  font-weight: 600; margin-bottom: 6px; color: #1d4ed8;
}

@media (max-width: 1024px) {
  .support-layout { grid-template-columns: 1fr; }
}

/* ── Billing Page ─────────────────────────────────────────── */
.billing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.billing-plan-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 2px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}
.billing-plan-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.billing-plan-card.plan-free::before { background: #94a3b8; }
.billing-plan-card.plan-basic::before { background: #4F46E5; }
.billing-plan-card.plan-pro::before { background: linear-gradient(90deg, #667eea, #764ba2); }

.billing-plan-name {
  font-size: 22px; font-weight: 700; color: #1e293b;
  display: flex; align-items: center; gap: 10px;
}
.billing-plan-badge {
  font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.billing-plan-badge.free { background: #f1f5f9; color: #64748b; }
.billing-plan-badge.basic { background: #dbeafe; color: #1d4ed8; }
.billing-plan-badge.pro { background: #ede9fe; color: #6d28d9; }

.billing-plan-price {
  font-size: 32px; font-weight: 800; color: #1e293b;
  margin: 12px 0 4px;
}
.billing-plan-price span {
  font-size: 14px; font-weight: 400; color: #94a3b8;
}

.billing-usage-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #e2e8f0;
}
.billing-usage-item {
  margin-bottom: 16px;
}
.billing-usage-item:last-child { margin-bottom: 0; }
.billing-usage-label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; font-weight: 500; color: #475569;
  margin-bottom: 6px;
}
.billing-usage-bar {
  height: 8px;
  background: #f1f5f9;
  border-radius: 4px;
  overflow: hidden;
}
.billing-usage-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.5s ease;
}

.billing-plans-compare {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.billing-plan-col {
  background: #fff;
  border-radius: 14px;
  border: 2px solid #e2e8f0;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.billing-plan-col.active {
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(33,150,243,0.12);
}
.billing-plan-col-header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}
.billing-plan-col-header.free { background: #f8fafc; }
.billing-plan-col-header.basic { background: linear-gradient(135deg, #EEF2FF, #dbeafe); }
.billing-plan-col-header.pro { background: linear-gradient(135deg, #f5f3ff, #ede9fe); }
.billing-plan-col-body {
  padding: 20px;
}
.billing-plan-feature {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 0;
  font-size: 13px; color: #475569;
  border-bottom: 1px solid #f8fafc;
}
.billing-plan-feature:last-child { border-bottom: none; }
.billing-plan-feature .material-symbols-outlined {
  font-size: 18px; color: #22c55e;
}

.billing-history-table {
  width: 100%;
  border-collapse: collapse;
}
.billing-history-table th {
  text-align: left;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94a3b8;
  padding: 10px 14px;
  border-bottom: 1px solid #e2e8f0;
}
.billing-history-table td {
  padding: 12px 14px;
  font-size: 13px; color: #475569;
  border-bottom: 1px solid #f1f5f9;
}

@media (max-width: 768px) {
  .billing-grid { grid-template-columns: 1fr; }
  .billing-plans-compare { grid-template-columns: 1fr; }
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-content {
  margin-left: 180px;
  margin-top: 52px;
  padding: 24px 32px;
  min-height: calc(100vh - 52px);
  background: #F1F5F9;
}

/* ============================================================
   PAGE HEADER & BREADCRUMB
   ============================================================ */
.page-header {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.page-title {
  font-size: 28px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.breadcrumb {
  font-size: 13px;
  color: #64748b;
}

.breadcrumb a {
  color: #4F46E5;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-header .page-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 24px;
  margin-bottom: 20px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}

.card-body {
  padding: 0;
}

.card-footer {
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  margin-top: 16px;
}

/* ============================================================
   STAT CARDS (Dashboard)
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.stat-card .stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.stat-card .stat-icon.blue {
  background: #EEF2FF;
  color: #4F46E5;
}

.stat-card .stat-icon.green {
  background: #E8F5E9;
  color: #4CAF50;
}

.stat-card .stat-icon.orange {
  background: #FFF3E0;
  color: #FF9800;
}

.stat-card .stat-icon.red {
  background: #FFEBEE;
  color: #F44336;
}

.stat-card .stat-info {
  flex: 1;
  min-width: 0;
}

.stat-card .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.stat-card .stat-label {
  font-size: 13px;
  color: #64748b;
  margin-top: 2px;
}

.stat-card .stat-trend {
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}

.stat-card .stat-trend.up {
  color: #4CAF50;
}

.stat-card .stat-trend.down {
  color: #F44336;
}

/* ============================================================
   TABLES
   ============================================================ */
.table-container {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 20px;
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid #e2e8f0;
  background: #f8fafc;
  white-space: nowrap;
}

tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
  color: #334155;
  vertical-align: middle;
}

tbody tr:hover {
  background: #f8fafc;
}

tbody tr:last-child td {
  border-bottom: none;
}

.table-empty {
  text-align: center;
  padding: 48px 16px;
  color: #64748b;
}

.table-empty .empty-icon {
  font-size: 40px;
  margin-bottom: 8px;
  opacity: 0.4;
}

/* Table toolbar */
.table-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

/* ============================================================
   BADGES / STATUS PILLS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.4;
}

.badge-available,
.badge-confirmed,
.badge-paid {
  background: #E8F5E9;
  color: #2E7D32;
}

.badge-reserved,
.badge-in-progress {
  background: #EEF2FF;
  color: #3730A3;
}

.badge-pending,
.badge-maintenance {
  background: #FFF3E0;
  color: #E65100;
}

.badge-cancelled,
.badge-overdue {
  background: #FFEBEE;
  color: #C62828;
}

.badge-success {
  background: #E8F5E9;
  color: #2E7D32;
}

.badge-primary,
.badge-active {
  background: #EEF2FF;
  color: #3730A3;
}

.badge-warning {
  background: #FFF3E0;
  color: #E65100;
}

.badge-danger {
  background: #FFEBEE;
  color: #C62828;
}

.badge-secondary {
  background: #f1f5f9;
  color: #64748b;
}

.badge-info {
  background: #E0F7FA;
  color: #00838F;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
  justify-content: center;
}

.btn:active {
  transform: scale(0.98);
}

/* Primary */
.btn-primary {
  background: #4F46E5;
  color: white;
}

.btn-primary:hover {
  background: #4338CA;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
  color: white;
}

/* Success */
.btn-success {
  background: #4CAF50;
  color: white;
}

.btn-success:hover {
  background: #388E3C;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  color: white;
}

/* Danger */
.btn-danger {
  background: #F44336;
  color: white;
}

.btn-danger:hover {
  background: #D32F2F;
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
  color: white;
}

/* Warning */
.btn-warning {
  background: #FF9800;
  color: white;
}

.btn-warning:hover {
  background: #EF6C00;
  color: white;
}

/* Outline Primary */
.btn-outline-primary {
  background: transparent;
  border: 1px solid #4F46E5;
  color: #4F46E5;
}

.btn-outline-primary:hover {
  background: #EEF2FF;
}

/* Outline Success */
.btn-outline-success {
  background: transparent;
  border: 1px solid #4CAF50;
  color: #4CAF50;
}

.btn-outline-success:hover {
  background: #E8F5E9;
}
.btn-outline-warning {
  background: transparent;
  border: 1px solid #d97706;
  color: #d97706;
}
.btn-outline-warning:hover {
  background: #fffbeb;
}

/* Outline Danger */
.btn-outline-danger {
  background: transparent;
  border: 1px solid #F44336;
  color: #F44336;
}

.btn-outline-danger:hover {
  background: #FFEBEE;
}

/* Outline Secondary */
.btn-outline-secondary {
  background: transparent;
  border: 1px solid #e2e8f0;
  color: #64748b;
}

.btn-outline-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #334155;
}

/* Sizes */
.btn-sm {
  padding: 6px 14px;
  font-size: 13px;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}

/* Icon-only button */
.btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 8px;
  font-size: 16px;
}

.btn-icon.btn-sm {
  width: 28px;
  height: 28px;
  font-size: 14px;
}

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #1e293b;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.form-control::placeholder {
  color: #94a3b8;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px 10px;
  padding-right: 40px;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-control.is-invalid {
  border-color: #F44336;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

.form-error {
  color: #F44336;
  font-size: 12px;
  margin-top: 4px;
}

.form-hint {
  color: #94a3b8;
  font-size: 12px;
  margin-top: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Checkbox / Radio */
.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #4F46E5;
  cursor: pointer;
}

.form-check label {
  margin-bottom: 0;
  cursor: pointer;
  font-size: 14px;
  color: #1e293b;
}

/* ============================================================
   TABS
   ============================================================ */
.tabs {
  display: flex;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 24px;
}

.tab-item {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.tab-item.active {
  color: #4F46E5;
  border-bottom-color: #4F46E5;
}

.tab-item:hover {
  color: #334155;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Tab Pills */
.tab-pills {
  display: flex;
  gap: 0;
  background: #e2e8f0;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 24px;
}

.tab-pill {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-pill.active {
  background: #4F46E5;
  color: white;
  box-shadow: 0 2px 4px rgba(33, 150, 243, 0.3);
}

.tab-pill:hover:not(.active) {
  color: #334155;
}

/* ============================================================
   CALENDAR / GANTT
   ============================================================ */
.calendar-container {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  overflow-x: auto;
  margin-bottom: 20px;
}

.gantt-grid {
  display: grid;
  min-width: 1200px;
}

.gantt-header {
  display: grid;
  position: sticky;
  top: 0;
  z-index: 5;
  background: #f8fafc;
}

.gantt-header .day-col {
  padding: 8px 4px;
  text-align: center;
  font-size: 11px;
  border-right: 1px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
}

.gantt-header .day-col.weekend {
  background: #FFF8E1;
}

.gantt-header .day-col.today {
  background: #EEF2FF;
}

.gantt-header .day-name {
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  font-size: 10px;
}

.gantt-header .day-num {
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
}

.gantt-row {
  display: grid;
  border-bottom: 1px solid #f1f5f9;
  min-height: 60px;
  align-items: center;
}

.gantt-row:hover {
  background: #f8fafc;
}

.gantt-vehicle-col {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #e2e8f0;
  position: sticky;
  left: 0;
  background: white;
  z-index: 2;
  min-width: 280px;
}

.gantt-vehicle-col img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.gantt-vehicle-col .v-name {
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
}

.gantt-vehicle-col .v-info {
  font-size: 12px;
  color: #64748b;
}

.gantt-bar {
  background: #4CAF50;
  border-radius: 4px;
  padding: 4px 8px;
  color: white;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  min-height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.gantt-bar:hover {
  opacity: 0.9;
}

.gantt-bar .bar-location {
  font-weight: 500;
}

.gantt-bar .bar-customer {
  opacity: 0.9;
  font-size: 10px;
}

.gantt-bar.bar-confirmed {
  background: #4CAF50;
}

.gantt-bar.bar-pending {
  background: #FF9800;
}

.gantt-bar.bar-active {
  background: #4F46E5;
}

.gantt-bar.bar-cancelled {
  background: #F44336;
}

/* Calendar Grid (monthly view) */
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.calendar-header h2 {
  font-size: 18px;
}

.calendar-nav {
  display: flex;
  gap: 6px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.calendar-grid .cal-day-header {
  background: #f8fafc;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
  letter-spacing: 0.03em;
}

.calendar-grid .cal-day {
  min-height: 90px;
  padding: 6px;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background: white;
  cursor: pointer;
  transition: background 0.2s;
}

.calendar-grid .cal-day:nth-child(7n) {
  border-right: none;
}

.calendar-grid .cal-day:hover {
  background: #f8fafc;
}

.calendar-grid .cal-day.other-month {
  background: #f8fafc;
  opacity: 0.5;
}

.calendar-grid .cal-day.today {
  background: #EEF2FF;
}

.calendar-grid .cal-day .day-number {
  font-weight: 600;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 4px;
}

.calendar-grid .cal-day.today .day-number {
  color: #4F46E5;
  background: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.calendar-grid .cal-event {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  cursor: pointer;
}

.calendar-grid .cal-event.event-confirmed {
  background: #E8F5E9;
  color: #2E7D32;
}

.calendar-grid .cal-event.event-pending {
  background: #FFF3E0;
  color: #E65100;
}

.calendar-grid .cal-event.event-active {
  background: #EEF2FF;
  color: #3730A3;
}

.calendar-grid .cal-event.event-cancelled {
  background: #FFEBEE;
  color: #C62828;
}

/* ============================================================
   SEARCH / FILTER BAR
   ============================================================ */
.search-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.search-input-wrap {
  position: relative;
  flex: 1;
}

.search-input-wrap input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #1e293b;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input-wrap input:focus {
  outline: none;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.search-input-wrap .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 18px;
  pointer-events: none;
}

.filter-btn {
  width: 44px;
  height: 44px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 18px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.filter-btn:hover {
  border-color: #4F46E5;
  color: #4F46E5;
  background: #EEF2FF;
}

/* ============================================================
   RESERVATION DETAIL
   ============================================================ */
.res-detail-header {
  margin-bottom: 24px;
}

.res-detail-header h1 {
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.res-detail-header .res-number {
  color: #4F46E5;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-box {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
  background: white;
}

.info-box .label {
  font-size: 11px;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  font-weight: 500;
}

.info-box .value {
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
}

.status-sidebar {
  position: sticky;
  top: 76px;
}

/* ============================================================
   SETTINGS
   ============================================================ */
.settings-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
}

.settings-menu {
  background: white;
  border-radius: 12px 0 0 12px;
  padding: 16px 0;
}

.settings-menu .menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  color: #64748b;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.settings-menu .menu-item:hover {
  background: #f8fafc;
  color: #334155;
}

.settings-menu .menu-item.active {
  color: #4F46E5;
  background: #EEF2FF;
}

.settings-menu .menu-item .icon {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.settings-content {
  background: white;
  border-radius: 0 12px 12px 0;
  padding: 32px;
  border-left: 1px solid #e2e8f0;
}

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.login-page::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(79,70,229,0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(99,102,241,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.login-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
  animation: loginFadeIn 0.6s ease-out;
}
@keyframes loginFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.login-card .logo {
  text-align: center;
  margin-bottom: 32px;
}

.login-card .logo img {
  width: 80px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
}

.login-card h1 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.login-card h1 span {
  color: #818CF8 !important;
}

.login-card .subtitle {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 32px;
  font-size: 14px;
}

.login-card .form-label {
  color: #cbd5e1;
}

.login-card .form-control {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #f1f5f9;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.login-card .form-control::placeholder {
  color: #64748b;
}
.login-card .form-control:focus {
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.25);
  outline: none;
  background: rgba(255,255,255,0.1);
}

.login-card .btn-login {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4F46E5, #6366F1);
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(79,70,229,0.4);
}
.login-card .btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(79,70,229,0.5);
}

.login-error {
  background: rgba(239,68,68,0.15);
  color: #fca5a5;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  display: none;
  border: 1px solid rgba(239,68,68,0.2);
}

.login-error.show {
  display: block;
}

/* ============================================================
   INVOICE SUMMARY
   ============================================================ */
.invoice-summary {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
  background: white;
}

.invoice-summary .sum-item {
  padding: 16px 32px;
  text-align: center;
  border-right: 1px solid #e2e8f0;
}

.invoice-summary .sum-item:last-child {
  border-right: none;
}

.invoice-summary .sum-label {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.invoice-summary .sum-value {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
}

/* ============================================================
   VEHICLE BRAND LOGO & INFO
   ============================================================ */
.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: #f1f5f9;
  flex-shrink: 0;
}

.vehicle-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vehicle-info .v-model {
  font-weight: 500;
  font-size: 14px;
  color: #1e293b;
}

.vehicle-info .v-details {
  font-size: 12px;
  color: #64748b;
}

/* ============================================================
   CUSTOMER ROW
   ============================================================ */
.customer-type {
  font-size: 11px;
  color: #94a3b8;
}

/* ============================================================
   DATE PILLS (Dashboard)
   ============================================================ */
.date-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.date-pill {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  font-size: 13px;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
  background: white;
}

.date-pill:hover {
  border-color: #4F46E5;
  color: #4F46E5;
}

.date-pill.active {
  background: #4F46E5;
  color: white;
  border-color: #4F46E5;
}

/* ============================================================
   RELEASE NOTES
   ============================================================ */
.release-note {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid #4CAF50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.release-note .version {
  font-weight: 600;
  font-size: 16px;
  color: #1e293b;
  margin-bottom: 8px;
}

.release-note .date {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 12px;
}

.release-note .tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-right: 6px;
  margin-bottom: 4px;
}

.release-note .tag.new {
  background: #E8F5E9;
  color: #2E7D32;
}

.release-note .tag.improvement {
  background: #EEF2FF;
  color: #3730A3;
}

.release-note .tag.fix {
  background: #FFF3E0;
  color: #E65100;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

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

.modal {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateY(0) scale(1);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from {
    transform: translateY(20px) scale(0.97);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal.modal-lg {
  max-width: 800px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 600;
}

.modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: none;
  color: #64748b;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.modal-close:hover {
  background: #f1f5f9;
}

.modal-body {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 16px 20px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid #4CAF50;
  animation: slideIn 0.3s ease;
  pointer-events: all;
  min-width: 300px;
  max-width: 420px;
}

.toast.error {
  border-left-color: #F44336;
}

.toast.warning {
  border-left-color: #FF9800;
}

.toast.info {
  border-left-color: #4F46E5;
}

.toast .toast-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.toast .toast-message {
  flex: 1;
  font-size: 14px;
  font-weight: 450;
  color: #1e293b;
}

.toast .toast-close {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 18px;
  padding: 2px;
  transition: color 0.2s;
}

.toast .toast-close:hover {
  color: #1e293b;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ============================================================
   VEHICLE GRID CARDS
   ============================================================ */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.vehicle-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.vehicle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.vehicle-card .vehicle-img {
  height: 160px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #94a3b8;
  position: relative;
}

.vehicle-card .vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-card .vehicle-img .vehicle-status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
}

.vehicle-card .vehicle-info-section {
  padding: 16px;
}

.vehicle-card .vehicle-name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
  color: #1e293b;
}

.vehicle-card .vehicle-plate {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 8px;
}

.vehicle-card .vehicle-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 12px;
}

.vehicle-card .vehicle-details span {
  display: flex;
  align-items: center;
  gap: 3px;
}

.vehicle-card .vehicle-price {
  font-weight: 700;
  font-size: 17px;
  color: #4F46E5;
}

.vehicle-card .vehicle-price small {
  font-weight: 400;
  font-size: 12px;
  color: #64748b;
}

.vehicle-card .vehicle-actions {
  padding: 12px 16px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  gap: 8px;
}

/* ============================================================
   VEHICLES PAGE V2
   ============================================================ */
.veh-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.veh-stat-card {
  background: white;
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: transform 0.15s;
}
.veh-stat-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.veh-stat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.veh-stat-icon .material-symbols-outlined { font-size: 22px; }
.veh-stat-info {}
.veh-stat-value { font-size: 22px; font-weight: 700; color: #1e293b; }
.veh-stat-label { font-size: 12px; color: #64748b; margin-top: 1px; }

.vehicles-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 18px;
}

.vehicle-card-v2 {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #f1f5f9;
}
.vehicle-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-color: #e2e8f0;
}

.vc2-img-wrap {
  height: 180px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  position: relative;
  overflow: hidden;
}
.vc2-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s;
}
.vehicle-card-v2:hover .vc2-img-wrap img { transform: scale(1.05); }

.vc2-status {
  position: absolute; top: 10px; right: 10px;
}
.vc2-brand-logo {
  position: absolute; top: 10px; left: 10px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  padding: 6px 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.vc2-brand-logo img {
  height: 28px; width: auto; max-width: 60px;
  object-fit: contain; display: block;
}
.vc2-category {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px; font-weight: 600; color: #334155;
  display: flex; align-items: center; gap: 4px;
}

.vc2-body { padding: 16px 18px 14px; }
.vc2-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.vc2-title { font-size: 16px; font-weight: 700; color: #1e293b; margin: 0 0 3px; }
.vc2-plate {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; color: #64748b; font-weight: 500;
  background: #f1f5f9; padding: 2px 8px; border-radius: 4px; width: fit-content;
}
.vc2-price {
  font-size: 18px; font-weight: 700; color: #4F46E5;
  white-space: nowrap;
}
.vc2-price span { font-size: 11px; font-weight: 400; color: #94a3b8; }

.vc2-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px; margin-bottom: 12px;
}
.vc2-spec {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: #64748b;
  background: #f8fafc; padding: 5px 8px; border-radius: 6px;
}
.vc2-spec .material-symbols-outlined { font-size: 16px; color: #94a3b8; }

.vc2-active-res {
  font-size: 12px; color: #1e40af; background: #EEF2FF;
  padding: 6px 10px; border-radius: 6px; margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
  border: 1px solid #C7D2FE;
}

.vc2-actions {
  display: flex; gap: 8px; padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}
.vc2-actions .btn { font-size: 12px; padding: 6px 12px; }

.btn-outline-danger {
  color: #dc2626; border: 1px solid #fecaca; background: transparent;
  border-radius: 6px; cursor: pointer; transition: all 0.15s;
  display: flex; align-items: center; gap: 4px;
}
.btn-outline-danger:hover { background: #fef2f2; border-color: #f87171; }

.btn-outline-primary {
  color: #4F46E5; border: 1px solid #C7D2FE; background: transparent;
  border-radius: 6px; cursor: pointer; transition: all 0.15s;
  display: flex; align-items: center; gap: 4px;
  text-decoration: none; font-weight: 500;
}
.btn-outline-primary:hover { background: #EEF2FF; border-color: #818CF8; }

.add-vehicle-panel {
  margin-bottom: 20px;
  animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Vehicle Form Layout ──────────────────────────────────────── */
.vf-section-title {
  font-size: 14px; font-weight: 700; color: #1e293b;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px; padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}
.vf-section-title .material-symbols-outlined { font-size: 20px; color: #4F46E5; }
.vf-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 10px; }
.vf-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 10px; }
.vf-grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 12px; margin-bottom: 10px; }

/* ── Collapsible Sections ──────────────────────────────────────── */
.vf-collapsible {
  border: 1px solid #e2e8f0; border-radius: 10px;
  margin-bottom: 10px; overflow: hidden;
  transition: box-shadow 0.2s;
}
.vf-collapsible:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.vf-collapsible-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; cursor: pointer;
  background: #f8fafc; font-size: 14px; font-weight: 600; color: #334155;
  user-select: none; transition: background 0.15s;
}
.vf-collapsible-header:hover { background: #f1f5f9; }
.vf-collapsible-header.open { background: #EEF2FF; color: #1e40af; border-bottom: 1px solid #e2e8f0; }
.vf-collapsible-header.open .vf-chevron { transform: rotate(180deg); }
.vf-chevron { transition: transform 0.2s; font-size: 20px; color: #94a3b8; }
.vf-collapsible-body { padding: 16px; }

@media (max-width: 768px) {
  .vf-grid-2 { grid-template-columns: 1fr; }
  .vf-grid-3 { grid-template-columns: 1fr; }
  .vf-grid-4 { grid-template-columns: 1fr 1fr; }
}

/* Responsive vehicles v2 */
@media (max-width: 1200px) {
  .veh-stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .veh-stats-row { grid-template-columns: 1fr; }
  .vehicles-grid-v2 { grid-template-columns: 1fr; }
  .vc2-specs { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   VEHICLE LIST (table-style rows)
   ============================================================ */
.veh-list-container {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}
.veh-list-header {
  display: grid;
  grid-template-columns: 56px 2fr 1.2fr 0.7fr 0.7fr 0.9fr 100px;
  align-items: center;
  padding: 10px 18px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  gap: 12px;
}
.veh-row {
  display: grid;
  grid-template-columns: 56px 2fr 1.2fr 0.7fr 0.7fr 0.9fr 100px;
  align-items: center;
  padding: 12px 18px;
  gap: 12px;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: background 0.15s;
}
.veh-row:last-child { border-bottom: none; }
.veh-row:hover { background: #f8fafc; }
.veh-row-logo {
  width: 44px; height: 44px;
  background: #f8fafc;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}
.veh-row-logo img {
  width: 32px; height: 32px;
  object-fit: contain;
}
.veh-row-info { min-width: 0; }
.veh-row-name {
  font-size: 14px; font-weight: 600; color: #1e293b;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.veh-row-sub {
  font-size: 12px; color: #94a3b8; margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.veh-row-specs {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 12px; color: #64748b;
}
.veh-row-specs span {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.veh-row-km {
  font-size: 13px; color: #475569;
}
.veh-row-rate {
  text-align: left;
}
.veh-row-status {
  text-align: left;
}
.veh-row-actions {
  display: flex; gap: 4px; justify-content: flex-end;
}
.veh-action-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #64748b;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.veh-action-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #334155;
}
.veh-action-btn .material-symbols-outlined { font-size: 18px; }
.veh-action-del:hover {
  background: #fef2f2;
  border-color: #fecaca;
  color: #dc2626;
}

@media (max-width: 1024px) {
  .veh-list-header { display: none; }
  .veh-row {
    grid-template-columns: 44px 1fr auto;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    padding: 14px 16px;
  }
  .veh-row-logo { grid-row: 1 / 3; }
  .veh-row-info { grid-column: 2; }
  .veh-row-specs, .veh-row-km { display: none; }
  .veh-row-rate { grid-column: 3; grid-row: 1; text-align: right; }
  .veh-row-status { grid-column: 2; grid-row: 2; }
  .veh-row-actions { grid-column: 3; grid-row: 2; }
}

/* ── Filter Pills ─────────────────────────────────────────── */
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  background: #f1f5f9;
  text-decoration: none;
  transition: all 0.15s;
  border: 1px solid transparent;
}
.filter-pill:hover { background: #e2e8f0; color: #334155; }
.filter-pill.active {
  background: #EEF2FF;
  color: #4F46E5;
  border-color: #C7D2FE;
  font-weight: 600;
}
.filter-count {
  background: rgba(0,0,0,0.06);
  padding: 1px 7px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}
.filter-pill.active .filter-count {
  background: #dbeafe;
  color: #1d4ed8;
}

/* ============================================================
   DETAIL VIEW
   ============================================================ */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.detail-item {
  padding: 12px 0;
}

.detail-item .detail-label {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.detail-item .detail-value {
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 16px;
}

.pagination .page-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  background: white;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.2s;
}

.pagination .page-btn:hover {
  border-color: #4F46E5;
  color: #4F46E5;
}

.pagination .page-btn.active {
  background: #4F46E5;
  color: white;
  border-color: #4F46E5;
}

.pagination .page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ============================================================
   LOADING SPINNER
   ============================================================ */
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #e2e8f0;
  border-top-color: #4F46E5;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.spinner-sm {
  width: 18px;
  height: 18px;
  border-width: 2px;
}

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

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  gap: 12px;
  color: #64748b;
  font-size: 14px;
}

/* ============================================================
   ALERT / INFO BANNERS
   ============================================================ */
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.alert-info {
  background: #E0F7FA;
  color: #00838F;
  border: 1px solid rgba(0, 172, 193, 0.2);
}

.alert-success {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.alert-warning {
  background: #FFF3E0;
  color: #E65100;
  border: 1px solid rgba(255, 152, 0, 0.2);
}

.alert-danger {
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid rgba(244, 67, 54, 0.2);
}

/* ============================================================
   AVATAR
   ============================================================ */
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: white;
  background: linear-gradient(135deg, #4F46E5, #4338CA);
  flex-shrink: 0;
}

.avatar-sm {
  width: 28px;
  height: 28px;
  font-size: 11px;
}

.avatar-lg {
  width: 48px;
  height: 48px;
  font-size: 16px;
}

/* ============================================================
   TOOLTIP
   ============================================================ */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 100;
}

[data-tooltip]:hover::after {
  opacity: 1;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: #4F46E5 !important;
}

.text-success {
  color: #4CAF50 !important;
}

.text-danger {
  color: #F44336 !important;
}

.text-warning {
  color: #FF9800 !important;
}

.text-muted {
  color: #64748b !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 6px !important;
}

.mb-2 {
  margin-bottom: 12px !important;
}

.mb-3 {
  margin-bottom: 16px !important;
}

.mb-4 {
  margin-bottom: 24px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 6px !important;
}

.mt-2 {
  margin-top: 12px !important;
}

.mt-3 {
  margin-top: 16px !important;
}

.mt-4 {
  margin-top: 24px !important;
}

.mr-1 {
  margin-right: 6px;
}

.ml-1 {
  margin-left: 6px;
}

.p-1 {
  padding: 6px;
}

.p-2 {
  padding: 12px;
}

.p-3 {
  padding: 16px;
}

.p-4 {
  padding: 24px;
}

.d-flex {
  display: flex;
}

.gap-1 {
  gap: 6px;
}

.gap-2 {
  gap: 12px;
}

.gap-3 {
  gap: 16px;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.w-100 {
  width: 100%;
}

.hidden {
  display: none !important;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.font-bold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .sidebar {
    width: 60px;
  }

  .sidebar .logo-area {
    padding: 12px;
  }

  .sidebar .logo-area img {
    width: 36px;
    height: 36px;
  }

  .sidebar .company-name,
  .sidebar .user-name,
  .sidebar .role {
    display: none;
  }

  .sidebar .nav-item span:not(.icon) {
    display: none;
  }

  .sidebar .nav-item .badge-lock,
  .sidebar .nav-item .arrow {
    display: none;
  }

  .sidebar .nav-item {
    justify-content: center;
    padding: 10px;
  }

  .sidebar .nav-item .icon {
    margin-right: 0;
  }

  .sidebar .sub-menu .nav-item {
    padding-left: 10px;
  }

  .sidebar .bottom-section {
    display: none;
  }

  .sidebar .bin-checker-btn span {
    display: none;
  }

  .main-content {
    margin-left: 60px;
  }

  .top-header {
    left: 60px;
  }

  .form-row-3 {
    grid-template-columns: 1fr 1fr;
  }

  .settings-layout {
    grid-template-columns: 1fr;
  }

  .settings-menu {
    border-radius: 12px 12px 0 0;
  }

  .settings-content {
    border-radius: 0 0 12px 12px;
    border-left: none;
    border-top: 1px solid #e2e8f0;
  }
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
    width: 240px;
    transform: translateX(-240px);
  }

  .sidebar.open {
    display: flex;
    transform: translateX(0);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }

  /* Reset collapsed styles for mobile open state */
  .sidebar.open .company-name,
  .sidebar.open .user-name,
  .sidebar.open .role {
    display: block;
  }

  .sidebar.open .nav-item span:not(.icon) {
    display: inline;
  }

  .sidebar.open .nav-item {
    justify-content: flex-start;
    padding: 10px 20px;
  }

  .sidebar.open .nav-item .icon {
    margin-right: 12px;
  }

  .sidebar.open .bottom-section {
    display: block;
  }

  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 99;
  }

  .sidebar-overlay.active {
    display: block;
  }

  .main-content {
    margin-left: 0;
    padding: 20px 16px;
  }

  .top-header {
    left: 0;
  }

  .top-header .menu-toggle {
    display: flex;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-title {
    font-size: 22px;
  }

  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .invoice-summary {
    flex-direction: column;
  }

  .invoice-summary .sum-item {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }

  .invoice-summary .sum-item:last-child {
    border-bottom: none;
  }

  .vehicles-grid {
    grid-template-columns: 1fr;
  }

  .calendar-grid .cal-day {
    min-height: 60px;
  }

  .date-pills {
    flex-wrap: wrap;
  }

  .search-bar {
    flex-wrap: wrap;
  }

  .tab-pills {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 16px;
  }

  .page-title {
    font-size: 20px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .calendar-grid .cal-day-header {
    font-size: 10px;
  }

  .top-header a span.link-text {
    display: none;
  }

  .login-card {
    padding: 32px 24px;
  }

  .settings-layout {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SUPERADMIN PANEL
   ============================================================ */
.sa-sidebar {
  background: #faf5ff;
  border-right: 1px solid #e9d5ff;
}
.sa-sidebar .logo-area {
  border-bottom: 1px solid #e9d5ff;
}
.sa-sidebar .nav-item {
  color: #6b21a8;
}
.sa-sidebar .nav-item.active {
  color: #7c3aed;
  background: #ede9fe;
  border-left-color: #7c3aed;
}
.sa-sidebar .nav-item:hover {
  background: #f5f3ff;
  color: #5b21b6;
}
.sa-sidebar .bottom-section {
  border-top: 1px solid #e9d5ff;
}
.sa-header {
  background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
}
.sa-profile-trigger {
  background: linear-gradient(135deg, #a78bfa, #7c3aed) !important;
}
.stat-card .stat-icon.purple {
  background: #ede9fe;
  color: #7c3aed;
}
.sa-plan-distribution {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.sa-plan-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border-top: 3px solid #94a3b8;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.sa-plan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.sa-plan-card.plan-free { border-top-color: #94a3b8; }
.sa-plan-card.plan-basic { border-top-color: #4F46E5; }
.sa-plan-card.plan-pro { border-top-color: #7c3aed; }
.sa-plan-card .sa-plan-count {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin: 8px 0;
}
.sa-plan-card .sa-plan-label {
  font-size: 13px;
  color: #64748b;
}
.sa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: dropdownFadeIn 0.15s ease-out;
}
.sa-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  width: 90%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
}
.sa-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sa-modal-header h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.sa-modal-body {
  padding: 24px;
}
.sa-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
@media (max-width: 768px) {
  .sa-plan-distribution { grid-template-columns: 1fr; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .sidebar,
  .top-header,
  .toast-container,
  .modal-overlay,
  .btn,
  .page-actions,
  .search-bar,
  .filter-btn {
    display: none !important;
  }

  .main-content {
    margin: 0;
    padding: 0;
    background: white;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
  }

  thead th {
    background: #f0f0f0 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .badge {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body {
    background: white;
  }
}
