body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

.map-container {
    position: relative;
    height: 100%;
}

#map {
    height: 100%; /* Adjust according to selector height */
    width: 100%;
}

#map-style-selector {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    padding: 10px;
    font-size: 16px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    max-width: 90%;
}

.modal-content {
    position: relative;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#location-images img {
    width: 100%;
    height: auto;
    margin-top: 10px;
}
