/* Hazeways Car Reservations Main Styles */

.hcr-booking-container {
    background: #f8f9fa;
    padding: 30px 0;
}

.hcr-header {
    background: #fff;
    padding: 20px;
    border-bottom: 2px solid #007bff;
    margin-bottom: 30px;
    border-radius: 5px;
}

.hcr-header h2 {
    margin: 0;
    color: #333;
}

.hcr-header p {
    margin: 5px 0 0 0;
    color: #666;
    font-size: 14px;
}

.hcr-progress {
    margin-bottom: 30px;
}

.hcr-progress .progress {
    height: 8px;
    background: #e9ecef;
}

.hcr-progress .progress-bar {
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.hcr-booking-info {
    background: white;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.hcr-booking-info .col-md-3 {
    border-right: 1px solid #e9ecef;
    padding: 10px 0;
}

.hcr-booking-info .col-md-3:last-child {
    border-right: none;
}

.hcr-car-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.hcr-car-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.hcr-car-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hcr-car-details ul li {
    padding: 5px 0;
}

.hcr-car-details ul li i {
    color: #28a745;
    margin-right: 8px;
}

.hcr-price {
    text-align: center;
}

.hcr-price .price-label {
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
}

.hcr-price h3 {
    margin: 5px 0;
    color: #007bff;
    font-weight: bold;
}

.hcr-price .price-period {
    color: #999;
    font-size: 12px;
}

.hcr-insurance-options .card {
    border: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hcr-insurance-options .card:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-color: #007bff;
}

.hcr-insurance-options .form-check-input:checked ~ label {
    font-weight: 500;
}

.hcr-summary {
    position: sticky;
    top: 20px;
}

.hcr-summary .card-body {
    background: #f8f9fa;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Buttons */
.btn-primary {
    background: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
}

.btn-success {
    background: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background: #218838;
    border-color: #218838;
}

/* Responsive */
@media (max-width: 768px) {
    .hcr-booking-info .col-md-3 {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    .hcr-booking-info .col-md-3:last-child {
        border-bottom: none;
    }
    
    .hcr-summary {
        position: relative;
        top: auto;
        margin-top: 20px;
    }
    
    .hcr-car-card .row > div {
        padding: 20px;
    }
}

/* Datepicker */
.ui-datepicker {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ui-datepicker-header {
    background: #007bff;
    color: white;
    border-bottom: 1px solid #0056b3;
}

.ui-datepicker-header a {
    color: white;
}

.ui-datepicker td .ui-state-default {
    border: 1px solid #ddd;
    background: white;
}

.ui-datepicker td .ui-state-default:hover {
    background: #e9ecef;
}

.ui-datepicker td .ui-state-active {
    background: #007bff;
    border-color: #0056b3;
    color: white;
}
