  /* -- Vehicle page -- */
  .vehicles-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
  }

  /* Vehicle cards */
  .vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .vehicle-card {
    background: #fff;
    border: 1.5px solid #e3ecfa;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.15s;
  }
  .vehicle-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }

  .vc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 1.25rem 0.75rem;
    border-bottom: 1px solid #f0f2f5;
  }
  .vc-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    border: none;
    padding: 0;
  }
  .vc-header .vc-plate {
    font-size: 0.82rem;
    color: #666;
    margin-top: 0.15rem;
  }

  .vc-actions { display: flex; gap: 0.25rem; }

  .vc-body { padding: 1rem 1.25rem; }

  .cost-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.3rem 1rem;
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }
  .cost-grid .cost-label { color: #555; }
  .cost-grid .cost-value { text-align: right; font-weight: 600; color: #111; font-variant-numeric: tabular-nums; }
  .cost-grid .cost-total { border-top: 1.5px solid #e3ecfa; padding-top: 0.4rem; margin-top: 0.2rem; }
  .cost-grid .cost-total .cost-label { font-weight: 700; color: #0d47a1; }
  .cost-grid .cost-total .cost-value { font-weight: 700; color: #0d47a1; }

  .bijtelling-box {
    background: #f8f3e3;
    border: 1px solid #e3d09a;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
  }
  .bijtelling-box .bb-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #8a6d1b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.4rem;
  }
  .bijtelling-box .bb-detail {
    font-size: 0.85rem;
    color: #5a4a10;
    line-height: 1.5;
  }
  .bijtelling-box .bb-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #8a6d1b;
  }

  .vc-footer {
    padding: 0.75rem 1.25rem;
    background: #f9fafb;
    border-top: 1px solid #f0f2f5;
    font-size: 0.82rem;
    color: #666;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Page-specific badges (type badges) */
  .badge-lease     { background: #e3f2fd; color: #1565c0; }
  .badge-owned     { background: #ede7f6; color: #5e35b1; }
  .badge-private   { background: #fff8e1; color: #f57f17; }

  /* Action buttons */
  .action-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background 0.15s;
    color: #555;
  }
  .action-btn:hover { background: #e3ecfa; color: #0d47a1; }
  .action-btn.delete:hover { background: #fdecea; color: #c62828; }
  .action-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }

  /* ---- Modal ---- */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 300;
    align-items: center;
    justify-content: center;
  }
  .modal-overlay.open { display: flex; }

  .modal {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    width: 620px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 2px solid #e3ecfa;
  }
  .modal-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d47a1;
    margin: 0;
    border: none;
    padding: 0;
  }
  .modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #555;
    padding: 0 0.25rem;
  }
  .modal-close:hover { color: #c62828; }

  .modal-body { padding: 1.5rem; }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .form-row.full { grid-template-columns: 1fr; }
  .form-row.triple { grid-template-columns: 1fr 1fr 1fr; }

  .form-group { display: flex; flex-direction: column; }
  .form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.5rem 0.65rem;
    border: 1.5px solid #d0d7e2;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.15s;
    background: #fff;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #1565c0;
    box-shadow: 0 0 0 2px rgba(21,101,192,0.12);
  }
  .form-group textarea { resize: vertical; min-height: 60px; }

  .form-section-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0d47a1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
    padding-bottom: 0.4rem;
    border-bottom: 1.5px solid #e3ecfa;
  }

  .checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .checkbox-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: #1565c0; }
  .checkbox-row label { font-size: 0.9rem; font-weight: 500; margin: 0; }

  .modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e8edf5;
  }
  .btn-cancel {
    padding: 0.55rem 1.25rem;
    background: #f0f2f5;
    color: #333;
    border: 1.5px solid #d0d7e2;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
  }
  .btn-cancel:hover { background: #e3ecfa; }
  .btn-save {
    padding: 0.55rem 1.5rem;
    background: #1565c0;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
  }
  .btn-save:hover { background: #0d47a1; }
  .btn-save:disabled { background: #90b4e8; cursor: not-allowed; }

  @media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .form-row.triple { grid-template-columns: 1fr; }
    .vehicles-toolbar { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
    .vehicle-grid { grid-template-columns: 1fr; }
  }
