body {
    overflow-x: hidden;
    overflow-y: auto !important;
  }

  /* Custom luxury scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #f1f5f9;
  }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #1e40af, #1e3a8a);
    border-radius: 4px;
  }

  /* Modal styling */
  .car-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow-y: auto;
  }

  .car-modal.active {
    display: flex;
  }