html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    /* overflow: hidden; Evita el scroll en la página */
}

#mapOax {
    width: 100vw;
    height: calc(100vh - 69px);
    position: absolute;
    top: 0;
    left: 0;
}

.oax_pop{
    font-size: 25px !important;
    margin: 2px !important;
    color: #000 !important;
}

#municipalitySelect {

}

#munOptions{
    font-family: 'Montserrat'; 
    font-size: 20px; 
    position: absolute;
    top: 0px;
    left: 55px;
    z-index: 400;
    width: 25%;
    margin: 10px;
    border-radius: 10px;
    color: #ffffff;
    background: #A5264D;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

  #customDropdown {
    position: absolute;
    top: 100%; /* Below the input */
    left: 0;
    width: 100%;
    background: white;
    border: 2px solid #ccc;
    max-height: 517px; 
    overflow-y: auto; /* Allows vertical scrolling */
    display: none; /* Initially hidden */
    z-index: 1000; /* Ensures it is above other elements */
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    font-family: 'Montserrat'; 
    
}

#customDropdown div {
    color: black; 
    padding: 5px;
    cursor: pointer;
    font-size: 18px; 
    font-family: 'Montserrat'; 
}

#customDropdown div:hover {
    background-color: rgb(5, 110, 222); /* Background color on hover */
    color: #ffffff;
}


.dropdown-item {
    padding: 5px;
    cursor: pointer;
    color: black; /* Base color for regular municipalities */
}

.special-municipality {
    font-weight: bold; /*Special municipalities with bold text only */
    font-family: 'Montserrat'; 
    font-size: 17px;
}

.small-icon {
    font-size: 0.8em; /* Reduce the icon size */
}


