/* Map Container */
.map-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

/* Map Styling */
#map {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    border: 2px solid #c8a03d;
    box-shadow: 0 0 25px rgba(200,160,61,0.3);
    margin-bottom: 20px;
}

/* Pickup & Drop-off Fields */
.location-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.location-fields input {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 10px;
    border: 2px solid #ddd;
    background: #f9f9f9;
    cursor: not-allowed;
}

/* Active Filled Fields */
.location-fields input:not(:placeholder-shown) {
    border-color: #c8a03d;
    background: #fff;
}

/* Mobile */
@media (max-width: 768px) {
    .location-fields {
        grid-template-columns: 1fr;
    }

    #map {
        height: 300px;
    }
}
