/* Style for the map image */
.zoomable {
    max-width: 100%;
    height: auto;
    cursor: zoom-in;
}

/* Zoom Modal styles */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: -50px;
    width: 100%;
    height: calc(100% + 50px);
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.zoom-modal[aria-hidden="false"] {
    display: flex;
}

.zoom-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

#zoomedImage {
    max-width: 100%;
    max-height: 100%;
    border: 1px solid #fff;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}
