/* limousine-ride.css per Limousine Ride Portlet */

.limousine-ride-container {
    padding: 20px;
    background-color: #FFFFFF;
}

.booking-form-container h2 {
    color: #FF0000;
    margin-bottom: 20px;
}

.booking-form-container h2 {
    color: #FF0000;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    color: #333333;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-map {
    height: 600px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #FF0000;
    border-color: #FF0000;
}

.btn-primary:hover {
    background-color: #CC0000;
    border-color: #CC0000;
}

.booking-summary-box {
    background-color: #f8f9fa;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
}

.booking-form-container, .vehicle-selection-container h2 {
    color: #FF0000;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #ffffff;
}

.limousine-image {
    width: 100px;
    height: auto;
    border-radius: 5px;
}

/* Ensure all section titles (h2) are red */
.limousine-ride-container h2,
.booking-form-container h2,
.vehicle-selection-container h2,
.booking-summary-box h2 {
    color: #FF0000 !important;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Container for vehicle selection */
.vehicle-selection-container {
    background-color: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 15px;
}

/* Style each row inside the search container */
.liferay-ui-search-container-row {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* Styling for limousine images */
.limousine-image {
    width: 120px;
    height: auto;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Styling for vehicle details */
.vehicle-capacity {
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.booking-availability {
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vehicle-features {
    font-size: 13px;
    color: #777;
}


 .image-modal {
     display: none;
     position: fixed;
     z-index: 1000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0,0,0,0.8);
 }

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 800px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
}

.close-modal:hover {
    color: #000;
}

.modal-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.modal-image-container {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.modal-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.modal-image-title {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

.limousine-image {
    cursor: pointer;
    transition: transform 0.2s;
}

.limousine-image:hover {
    transform: scale(1.05);
}
