.booking-form fieldset {
    border: 1px solid #dee2e6;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.booking-form legend {
    font-weight: bold;
    font-size: 1.2rem;
    padding: 0 10px;
    color: #333;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: 1 / -1;
}

.booking-form label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #555;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    box-sizing: border-box;
}

.reservation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

#map-desktop-container {
    position: sticky;
    top: 100px;
}

#map {
    height: 600px;
    width: 100%;
    background-color: #e9ecef;
    border-radius: 8px;
}

#map-mobile-placeholder {
    display: none;
}

input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

@media (max-width: 992px) {
    .reservation-container {
        grid-template-columns: 1fr;
    }
    #map-desktop-container {
        display: none;
    }
    #map-mobile-placeholder {
        display: block;
        margin: 1.5rem 0;
    }
    #map {
        height: 250px;
    }
}