/* styles.css */

/* Map and page layout styles */
#map {
    height: 100%;
    width: 100%;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#contours-legend {
    display: none;
}

#landuse-legend {
    display: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Controls Container */
#controls-container {
    position: absolute;
    top: 60px;
    left: 10px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between elements */
}

/* Styles for the layer control box */
#layer-control {
    background: white;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.5;
}

/* Search Container */
#search-container {
    display: flex;
    gap: 10px; /* Space between input and button */
}

/* Styles for the input box */
#search-input {
    width: 300px;
    padding: 8px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Styles for the search button */
#search-button {
    padding: 8px 16px;
    font-size: 16px;
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Styles for the legend box */
#legend {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgb(240, 240, 240);
    padding: 10px;
    z-index: 5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
