/* css/style.css */
body, html {
    height: 100%;
    margin: 0;
}

#map-container {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: grab;
    height: 100vh;
    width: 100%;
}

#map-container svg {
    z-index: 1;  // Ensure SVG is below the button and text
}

#map-image {
    transition: transform 0.2s ease-in-out;
    max-width: 100%;
    max-height: 100%;
}

#coordinates {
    z-index: 10;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    border-radius: 5px;
    margin: 10px;
}

#clear-coords {
    z-index: 10;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    border-radius: 5px;
    margin: 10px;
    cursor: pointer;
}


#options-sidebar label {
    cursor: pointer; /* Changes the cursor to pointer when hovering over the label */
}
#options-sidebar label:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Adds a slight highlight effect on hover */
}
