/* 1. CSS VARIABLES (Design Tokens) */
:root {
  /* Color System */
  --bs-primary: #041627;
  --bs-primary-rgb: 4, 22, 39;
  --bs-body-bg: #f7fafc;
  --bs-body-color: #181c1e;

  --color-surface: #f7fafc;
  --color-on-surface: #181c1e;
  --color-primary: #041627;
  --color-on-primary: #ffffff;
  --color-primary-container: #1a2b3c;
  --color-on-primary-container: #8192a7;
  --color-surface-variant: #e0e3e5;
  --color-on-surface-variant: #44474c;
  --color-outline: #74777d;
  --color-outline-variant: #c4c6cd;
  --color-surface-container-lowest: #ffffff;
  --color-surface-container-low: #f1f4f6;

  /* Typography */
  --font-family-base: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Alias – kompatibilitas dashboard (File 2) */
  --pd-primary: var(--color-primary);
  --pd-bg-light: var(--color-surface);
}

/* 2. GLOBAL */
html,
body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-family-base);
  background-color: var(--color-surface);
  color: var(--color-on-surface);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
}

/* 
   3. MATERIAL ICONS
    */
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
}

/* 
   4. TYPOGRAPHY
    */
.text-headline-md {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.text-display-lg {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -0.02em;
}

@media (max-width: 767.98px) {
  .text-display-lg {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
  }
}

.text-body-lg {
  font-size: 18px;
  line-height: 28px;
}

.text-label-md {
  font-size: 14px;
  font-weight: 500;
}

.text-label-sm {
  font-size: 12px;
  font-weight: 600;
}

.text-headline-sm {
  font-size: 20px;
  font-weight: 600;
}

.text-body-md {
  font-size: 16px;
}

/* 
   5. NAVBAR
    */
.navbar {
  background-color: rgba(247, 250, 252, 0.9) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #c4c6cd;
  height: 80px;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary) !important;
}

.nav-link {
  color: var(--color-on-surface-variant) !important;
  font-size: 14px;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--color-primary) !important;
}

/* 
   6. UTILITY CLASSES
    */
.text-primary-custom {
  color: var(--color-primary) !important;
}

/* Digabung: bg dari File 1, color:white dari File 2 */
.bg-primary-custom {
  background-color: var(--color-primary) !important;
  color: var(--color-on-primary);
}

.text-on-primary {
  color: var(--color-on-primary) !important;
}

.object-fit-cover {
  object-fit: cover;
}

.custom-hover-opacity {
  transition: opacity 0.2s ease;
}

.custom-hover-opacity:hover {
  opacity: 1 !important;
}

/* 
   7. BUTTONS
    */
.btn-custom-primary,
.btn-primary-custom {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  border: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-custom-primary {
  border-radius: 4px;
}

.btn-primary-custom {
  border-radius: 9999px;
  padding: 0.625rem 1.5rem;
}

.btn-custom-primary:hover,
.btn-primary-custom:hover {
  background-color: var(--color-primary-container);
  color: white;
}

.btn-light-custom {
  background-color: white;
  color: var(--color-primary);
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  border: none;
}

.btn-light-custom:hover {
  background-color: var(--color-surface);
}

/* Sign-in button (auth page) */
.btn-signin {
  background-color: #3182ce;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  border: none;
}

.btn-signin:hover {
  background-color: #2563a8;
  color: #ffffff;
}

/* Submit button */
.btn-submit {
  background-color: #3182ce;
  color: white;
  border: none;
  padding: 12px;
  font-weight: 500;
}

.btn-submit:hover {
  background-color: #2b6cb0;
  color: white;
}

/* CTA button */
.btn-cta {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 16px;
  font-weight: 500;
  transition:
    background-color 0.2s,
    border-color 0.2s;
}

.btn-cta:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

/* 
   8. FORM CONTROLS
    */

/* Standard Bootstrap */
.input-group-text {
  background-color: white;
  border-right: none;
  color: var(--color-on-surface-variant);
}

.form-control {
  border-left: none;
  background-color: white;
  color: var(--color-on-surface);
  padding-top: 12px;
  padding-bottom: 12px;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.25rem rgba(4, 22, 39, 0.25);
}

.input-group:focus-within .input-group-text {
  border-color: var(--color-primary);
}

/* Custom form controls (auth page) */
.custom-form-control {
  padding-left: 40px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-color: #c4c6cd;
  border-radius: 4px;
  background-color: #f7fafc;
  color: #181c1e;
  font-size: 16px;
}

.custom-form-control:focus {
  border-color: #3182ce;
  box-shadow: 0 0 0 0.25rem rgba(49, 130, 206, 0.25);
}

/* Search / widget form control */
.form-control-custom {
  padding: 0.75rem 1rem 0.75rem 3rem;
  background-color: var(--color-surface);
  border: 1px solid rgba(196, 198, 205, 0.5);
  border-radius: 0.5rem;
}

.form-control-custom:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}

/* 
   9. MAIN CONTENT (Landing page – default)
    */
.main-content {
  padding-top: 90px;
  min-height: 100vh;
}

/* 
   10. DIVIDER
    */
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 24px 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--color-outline-variant);
}

.divider:not(:empty)::before {
  margin-right: 0.25em;
}

.divider:not(:empty)::after {
  margin-left: 0.25em;
}

/* 
   11. LEFT SIDE (Landing page)
    */
.bg-left {
  background-color: #041627;
  background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuCBfFOpbtLVD09_lhG0pC3YISIxgH_Rt6xBj8bW0WIDS12qsoFfWDMGifIbGUfuwozv0oXwr9HZp2SVAR9W2IH-FSOKGkcoobTBQAaVH-sxXsoHl062npX42y6ZBYj5X9IN6kuJVo1L2qbvdav7vaYS44gDqEu6GxAcajfnsM6qDRnuwEERO-6Zx0lPFkTklxtmGMG3uSHeHZ79O_pIqm_1DkQTxb-FI0-t61ze1UYe2EhG70ChYlfK1TtXvQxNULsaGs11H2qAyU0D");
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 100vh;
}

.bg-overlay,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.bg-overlay {
  background: linear-gradient(
    to top,
    rgba(4, 22, 39, 0.9),
    rgba(4, 22, 39, 0.5),
    rgba(4, 22, 39, 0.2)
  );
}

.left-content {
  position: relative;
  z-index: 10;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

/* 
   12. LEFT PANEL (Auth page)
    */
.left-panel {
  background-color: #f1f4f6;
}

.left-panel-bg {
  background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuBrzlFbI0xLNGLrNwrQCKFs8X5XX8SJc1-tAT6j2t10X6Yiy6iCjSf81GVRP_uOhwajwnmq6gILc74lrGATgoRwXtTLMTald4H2Tz5rFt2C3tZqYh7BXqU_R77cS4o_LwGgf8rO1F1itLrAgrOWzGUQ-MeWtbOyLZiDMDLGl18ZEBYMKSG2gBoG3UbmusEZDW0Ujem3AB9a7xNzQqYtLxWD52Q4Ab24AVCWytSmSTMj1VBSI5LCkPIlFiYV-9OfnwglovG8B2NKSqBv");
  background-size: cover;
  background-position: center;
}

.left-panel-overlay {
  background: linear-gradient(to right, rgba(4, 22, 39, 0.8), transparent);
  mix-blend-mode: multiply;
}

.brand-logo {
  top: 40px;
  left: 48px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.panel-caption {
  bottom: 80px;
  left: 80px;
  max-width: 512px;
}

.panel-caption h2 {
  font-size: 48px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 56px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.panel-caption p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 28px;
}

/* 
   13. RIGHT CONTENT (Landing page)
    */
.right-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 16px;
  min-height: 100vh;
  background-color: var(--color-surface);
}

@media (min-width: 768px) {
  .right-content {
    padding: 48px 40px;
  }
}

.form-container {
  width: 100%;
  max-width: 400px;
}

/* 
   14. RIGHT PANEL (Auth page)
    */
.right-panel {
  max-width: 672px;
}

.form-wrapper {
  max-width: 448px;
}

.form-title {
  font-size: 48px;
  color: #041627;
  letter-spacing: -0.02em;
  line-height: 56px;
}

.form-subtitle {
  font-size: 16px;
  color: #44474c;
  line-height: 24px;
}

.form-field-label {
  font-size: 14px;
  font-weight: 500;
  color: #181c1e;
}

.input-icon {
  color: #74777d;
  pointer-events: none;
}

.input-icon .material-symbols-outlined {
  font-size: 20px;
}

.form-check-label-text {
  font-size: 16px;
  color: #44474c;
}

.forgot-link {
  font-size: 14px;
  font-weight: 500;
  color: #041627;
}

.signup-text {
  font-size: 16px;
  color: #44474c;
}

.signup-link {
  font-size: 14px;
  font-weight: 500;
  color: #041627;
}

.checkbox-border {
  border-color: #c4c6cd;
}

/* 
   15. HERO SECTION
    */
.hero-section {
  position: relative;
  min-height: 819px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 16rem;
  overflow: hidden;
  background-color: var(--color-surface-variant);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background-color: rgba(4, 22, 39, 0.4);
  mix-blend-mode: multiply;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(247, 250, 252, 0.2),
    transparent,
    var(--color-surface)
  );
}

/* 
   16. SEARCH WIDGET
    */
.search-widget {
  position: relative;
  z-index: 20;
  margin-top: -8rem;
  margin-bottom: 6rem;
}

.search-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(196, 198, 205, 0.3);
  box-shadow: 0 4px 24px rgba(26, 43, 60, 0.05);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-outline);
  z-index: 5;
}

/* 
   17. FLEET CARD
    */
.fleet-card {
  background-color: white;
  border: 1px solid rgba(196, 198, 205, 0.2);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26, 43, 60, 0.03);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fleet-card-img-wrapper {
  position: relative;
  overflow: hidden;
}

.fleet-card img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.fleet-card:hover img {
  transform: scale(1.05);
}

.fleet-badge {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-on-surface);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
}

.featured-large-card {
  min-height: 400px;
}

.featured-large-card img {
  position: absolute;
  height: 100%;
}

.featured-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 22, 39, 0.9),
    rgba(4, 22, 39, 0.2),
    transparent
  );
}

/* 
   18. CTA SECTION
    */
.cta-section {
  background-color: #041627;
  color: #ffffff;
  padding: 5rem 1.5rem;
  text-align: center;
}

.cta-section h2,
.cta-section .cta-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 56px;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .cta-section h2,
  .cta-section .cta-title {
    font-size: 32px;
    line-height: 40px;
  }
}

.cta-section p,
.cta-section .cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 28px;
  margin-bottom: 2rem;
}

/* 
   19. FEATURES
    */
.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* 
   20. CONTAINER
    */
@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }
}

/* 
   21. DASHBOARD – SIDEBAR LAYOUT
   
   Saat .sidebar ada di halaman, main-content di-override
   secara otomatis lewat :has() tanpa menyentuh halaman publik.
   Nilai 80 px diselaraskan dengan tinggi navbar (.navbar height).
    */
.sidebar {
  position: fixed;
  top: 80px; /* selaras dengan .navbar { height: 80px } */
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 20px 0;
  background-color: #fff;
}

/* Override .main-content hanya ketika sidebar hadir */
body:has(.sidebar) .main-content {
  padding-top: 0;
  margin-top: 80px; /* selaras dengan tinggi navbar */
}

@media (min-width: 992px) {
  body:has(.sidebar) .main-content {
    margin-left: 16.66667%; /* setara col-lg-2 */
  }
}

/* 
   22. DASHBOARD – SIDEBAR NAVIGATION
    */
.nav-sidebar .nav-link {
  color: #44474c;
  padding: 0.8rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.nav-sidebar .nav-link.active {
  background-color: #1a2b3c;
  color: #4894e2;
}

.nav-sidebar .nav-link:hover:not(.active) {
  background-color: #e5e9eb;
}

/* 
   23. DASHBOARD – CARDS & TABLES
    */
.custom-card {
  background: #fff;
  border: 1px solid rgba(116, 119, 125, 0.2);
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(26, 43, 60, 0.05);
}

.table-row-hover {
  transition: transform 0.2s ease-out;
}

.table-row-hover:hover {
  transform: translateX(4px);
  background-color: #f1f4f6;
}

/* 
   24. DASHBOARD – CAR IMAGE THUMBNAIL
    */
.car-img-wrapper {
  width: 64px;
  height: 40px;
  border-radius: 4px;
  overflow: hidden;
  background: #ebeef0;
}

.car-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 
   25. ARMADA / FLEET PAGE
    */

/* Offset fixed navbar */
body.page-armada {
  padding-top: 80px;
}

/* Fleet image wrapper */
.fleet-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background-color: var(--color-surface-variant);
}

.fleet-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.fleet-card-bs:hover .fleet-img-wrapper img {
  transform: scale(1.05);
}

/* Fleet card */
.fleet-card-bs {
  background-color: var(--color-surface-container-lowest, #fff);
  border: 1px solid rgba(196, 198, 205, 0.3);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px -2px rgba(26, 43, 60, 0.05);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fleet-card-bs:hover {
  box-shadow: 0 8px 24px -4px rgba(26, 43, 60, 0.1);
  border-color: rgba(196, 198, 205, 0.5);
}

/* Fleet badges */
.badge-type {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-on-surface);
  font-size: 12px;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(196, 198, 205, 0.2);
  backdrop-filter: blur(4px);
}

.badge-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
}

.badge-tag.premium  { background-color: #0b1d2d; color: #fff; }
.badge-tag.ev       { background-color: #4894e2; color: #fff; }
.badge-tag.executive{ background-color: #0b1d2d; color: #fff; }
.badge-tag.sport    { background-color: #ba1a1a; color: #fff; }
.badge-tag.luxury   { background-color: #38485a; color: #fff; }

/* Card specs row */
.card-spec {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-on-surface-variant);
  font-size: 12px;
  font-weight: 600;
}

.card-spec .material-symbols-outlined {
  font-size: 18px;
}

/* Card price */
.card-price {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-on-surface);
  line-height: 1;
}

.card-price-unit {
  font-size: 12px;
  color: var(--color-on-surface-variant);
}

/* View Details button */
.btn-view-details {
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.btn-view-details:hover {
  background-color: var(--color-primary-container);
  color: #fff;
}

/* Card bottom divider */
.card-divider {
  border-top: 1px solid rgba(196, 198, 205, 0.2);
}

/* Sort button */
.sort-btn {
  background: none;
  border: none;
  color: var(--color-on-surface);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
}

.sort-btn:hover {
  background-color: rgba(196, 198, 205, 0.3);
  color: var(--color-primary);
}

/* Breadcrumb (armada page) */
.breadcrumb-item a {
  color: var(--color-on-surface-variant);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

.breadcrumb-item a:hover {
  color: var(--color-primary);
}

.breadcrumb-item.active {
  color: var(--color-on-surface);
  font-size: 12px;
  font-weight: 600;
}

.breadcrumb-divider {
  color: var(--color-on-surface-variant);
  font-size: 16px;
  line-height: 1;
}

/* 
   26. PAGINATION (Fleet page)
    */
.pagination-fleet .page-link {
  color: var(--color-primary);
  border-color: rgba(196, 198, 205, 0.4);
  font-size: 14px;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  line-height: 1.5;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.pagination-fleet .page-link:hover {
  background-color: var(--color-surface-variant);
  border-color: var(--color-outline-variant);
  color: var(--color-primary);
}

.pagination-fleet .page-item.active .page-link {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

.pagination-fleet .page-item.disabled .page-link {
  color: var(--color-outline);
  background-color: transparent;
  border-color: rgba(196, 198, 205, 0.3);
}

.pagination-fleet .page-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(4, 22, 39, 0.2);
}

/* 
   27. SEARCH BAR (Fleet page)
    */
.search-bar-fleet {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid rgba(196, 198, 205, 0.6);
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(26, 43, 60, 0.05);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-bar-fleet:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(4, 22, 39, 0.1);
}

.search-bar-icon {
  padding: 0 0.75rem 0 1rem;
  color: var(--color-outline);
  font-size: 20px;
  pointer-events: none;
  flex-shrink: 0;
}

.search-bar-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-on-surface);
  padding: 0.8rem 0.5rem;
  font-family: var(--font-family-base);
}

.search-bar-input::placeholder {
  color: var(--color-outline);
}

.search-bar-clear {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  color: var(--color-outline);
  text-decoration: none;
  transition: color 0.2s;
  flex-shrink: 0;
}

.search-bar-clear:hover {
  color: var(--color-on-surface);
}

.search-bar-clear .material-symbols-outlined {
  font-size: 18px;
}

.search-bar-btn {
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-family-base);
  cursor: pointer;
  transition: background-color 0.2s;
  flex-shrink: 0;
}

.search-bar-btn:hover {
  background-color: var(--color-primary-container);
}
/* 
   28. TYPE FILTER BAR (Fleet page)
    */
.type-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;
}

.type-filter-bar::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.type-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  border: 1.5px solid rgba(196, 198, 205, 0.6);
  color: var(--color-on-surface-variant);
  background-color: #ffffff;
  transition: all 0.18s ease;
  flex-shrink: 0;
}

.type-filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: rgba(4, 22, 39, 0.04);
}

.type-filter-btn.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

.type-filter-btn.active:hover {
  background-color: var(--color-primary-container);
  border-color: var(--color-primary-container);
  color: #ffffff;
}