/* Car Detail Modal Styles */
.modal-lg {
    max-width: 1000px;
    width: 95%;
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}

/* Left Column */
.modal-left {
    flex: 1;
    background-color: var(--color-black-light);
    padding: 40px;
    display: flex;
    flex-direction: column;
    min-width: 300px;
    border-right: 1px solid rgba(255, 215, 0, 0.1);
}

.modal-title-mobile {
    display: none;
    /* Shown on mobile if needed */
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.modal-image-container {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-car-img {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
}

.modal-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}



.booking-details-box {
    margin-top: auto;
}

.detail-box {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.detail-box h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-icon {
    position: relative;
    width: 100%;
}

.input-icon i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.clean-input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 1px solid #eee;
    background: #fdfdfd;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #333;
    outline: none;
    transition: border 0.3s;
}

.clean-input:focus {
    border-color: #1976D2;
    background: white;
}

.input-row {
    display: flex;
    gap: 10px;
}

/* Right Column */
.modal-right {
    flex: 1;
    background-color: var(--color-black);
    padding: 40px;
    min-width: 300px;
}

.modal-right h2 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--color-white);
}

.modal-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-yellow);
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.modal-price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.price-note {
    color: #e53935;
    font-size: 0.8rem;
    margin-bottom: 25px;
}

.detail-form .form-group {
    margin-bottom: 15px;
}

.detail-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.detail-form input.clean-input,
.detail-form textarea.clean-input {
    padding-left: 15px;
    /* No icons here */
    background: var(--color-black-light);
    border: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--color-white);
}

.detail-form input.clean-input:focus,
.detail-form textarea.clean-input:focus {
    background: var(--color-black-lighter);
    border-color: var(--color-yellow);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}





/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
    }

    .modal-left,
    .modal-right {
        padding: 20px;
    }

    .modal-title-mobile {
        display: block;
    }
}