

/* map container, fullscreen button, exit fullscreen button*/
#clickable-map {
    height: 500px;
    width: 100%;
    position: relative;
    z-index: 10;
    margin: 2rem 0;
}

#fullscreen-map {
    display: block;
}

#exit-fullscreen {
    display: none;
}

#exit-fullscreen:hover {
    background: #f0f0f0;
}

.clickable-map-tooltip {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 18px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.fullscreen-exit-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    padding: 10px 15px;
    border: 1px solid #ccc;
    font-size: 18px;
    cursor: pointer;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.fullscreen-exit-button:hover {
    background: #f0f0f0;
}






/* popup plot for map locations */
#map-plot-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 5000;
}

#map-plot-container img {
    max-width: 90%;
    max-height: 90%;
}

#close-plot-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    z-index: 50000; /* Make sure it stays on top of the image */
    font-size: 16px;
    font-weight: bold;
}



