.booking-form {
    background-color: white;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  .nav-tabs .nav-link {
    color: #495057;
  }
  .nav-tabs .nav-link.active {
    font-weight: bold;
  }
  .form-control {
    border-radius: 5px;
  }
  .time-picker {
    font-size: 1.2em;
    text-align: center;
  }
  .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
  }
  .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }
  .time-picker-container {
    display: flex;
    justify-content: space-between;
  }
  .time-picker {
    width: 48%;
  }
  .time-display {
    font-size: 24px;
    text-align: center;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .nav-tabs .nav-link {
            color: #495057;
        }
        .nav-tabs .nav-link.active {
            font-weight: bold;
        }
        .form-control {
            border-radius: 5px;
        }
        .time-picker {
            font-size: 1.2em;
            text-align: center;
        }
        .btn-primary {
            background-color: #007bff;
            border-color: #007bff;
        }
        .btn-primary:hover {
            background-color: #0056b3;
            border-color: #0056b3;
        }
        .selectable-monthly-day {
    background-color: #4CAF50 !important;
    color: white !important;
    border-color: #4CAF50 !important;
}
.disabled-monthly-day {
    color: #ccc !important;
    cursor: not-allowed !important;
}
.flatpickr-day.selected {
    background-color: #2196F3 !important;
    border-color: #2196F3 !important;
}
.price-section {
    margin-top: 30px;
    margin-bottom: 30px;
}

.price-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.price-table-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.price-table th, .price-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.price-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.price-table td {
    font-size: 18px;
    color: #555;
}

.price-value {
    font-weight: 600;
    color: #32BD7A;
}

.unavailable {
    color: #dc3545;
    font-weight: 700;
}

.availability-container {
  margin-top: 20px;
  margin-bottom: 30px;
}

.availability-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.availability-table th,
.availability-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.availability-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #333;
}

.availability-table tr:last-child td {
  border-bottom: none;
}

.availability-table td.unavailable {
  color: #dc3545;
  font-weight: 500;
}

.availability-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.availability-table tr:hover {
  background-color: #f1f3f5;
}



.image-gallery {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust as needed */
}

#mainImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navigation-arrows {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.image-counter {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
}
.favorite-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    padding: 10px;
}
.favorite-icon i {
    font-size: 24px;
    color: #000;
}
.favorite-icon i.fas {
    color: red;
}
.red-heart {
    color: red; /* Change this to whatever color you prefer */
}
.flatpickr-day.past-day,
.flatpickr-day.next-month-day,
.flatpickr-day.different-month-day {
    color: #ccc !important;
    background-color: #f0f0f0 !important;
    cursor: default !important;
    pointer-events: none;
}

.flatpickr-day.unavailable-day {
    color: #fff !important;
    background-color: #ffcccc !important;
    border-color: #ffcccc !important;
    cursor: not-allowed !important;
}

.flatpickr-day.unavailable-day:hover {
    background-color: #ffb3b3 !important;
}

.flatpickr-day.available-day {
    background-color: #e6ffe6 !important;
    border-color: #e6ffe6 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.flatpickr-day.available-day:hover {
    background-color: #ccffcc !important;
}

.flatpickr-day.today {
    border-color: #66a3ff !important;
}

.flatpickr-day.selected {
    background-color: #66a3ff !important;
    border-color: #66a3ff !important;
    color: white !important;
}

.flatpickr-day.selected:hover {
    background-color: #3385ff !important;
}


.modal-content {
    border-radius: 15px;
}

.modal-header {
    padding: 1.5rem 1.5rem 0.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 0.5rem 1.5rem 1.5rem;
}

.reservation-summary {
    background-color: #f8f9fa;
    border-radius: 10px;
}

.btn-primary {
    background-color: #32BD7A;
    border-color: #32BD7A;
}

.btn-primary:hover {
    background-color: #2aa268;
    border-color: #2aa268;
}

.price-breakdown {
    font-size: 0.95rem;
}

.total-amount {
    color: #32BD7A;
    font-size: 1.1rem;
}
.payment-method {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
}

.payment-method:hover {
    background-color: #f8f9fa;
}

.payment-method input[type="radio"] {
    cursor: pointer;
}

.payment-method label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
}

.payment-method img {
    margin-right: 10px;
}


#apple-pay-button {
    width: 100%;
    height: 40px;
    border-radius: 4px;
    margin-top: 8px;
    -apple-pay-button-type: plain;
    -apple-pay-button-style: black;
}

.payment-request-button {
    width: 100%;
    margin-top: 8px;
}

.vehicle-section input:invalid {
    border-color: #dc3545;
}

.vehicle-section .form-control:focus {
    border-color: #32BD7A;
    box-shadow: 0 0 0 0.2rem rgba(50, 189, 122, 0.25);
}

#vehicle-select {
    font-weight: 500 !important;
}

#new-vehicle-form .form-control {
    margin-bottom: 10px;
}

#new-vehicle-form .form-control::placeholder {
    color: #6c757d;
    opacity: 0.8;
}