body {
    margin: 0;
    padding: 0;
    font-family: 'ABeeZee';
    font-style: normal;
}

/* Estilos del contenedor 1 */
.cont1 {
    display: flex;
}

.cont1_texto {
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column;
    padding: 1rem;
    width: 40%
}

.cont1_texto img {
    border: 2px solid red;
}

.cont1_mapa {
    /* border: 2px solid red; */
    display: flex;
    width: 60%;
    justify-content: center;
}

.municipio {
    fill: #aaaaaa;
}

.municipio:hover {
    cursor: pointer;
    filter: brightness(1.2);
}

.customdialog {
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    padding: 2rem;
    border: none;
    width: 90vw;
    max-width: 500px;
    height: 90vh;
    max-height: 50vh;
}

.customdialog_footer {
    display: flex;
    justify-content: flex-end;
}

/* ESTILOS PARA EL MODAL */

/* Fondo oscuro */
.modal {
    display: none;
    /* Oculto por defecto */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    justify-content: center;
    align-items: center;
}

/* Caja del modal */
.modal-contenido {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    transform: translateY(-30px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal-body {
    display: flex;
    flex-direction: column;
}

/* Animación de entrada */
.modal.activo .modal-contenido {
    opacity: 1;
    transform: translateY(0);
}

/* Botón cerrar */
.btn-cerrar {
    float: right;
    background-color: #dc3545;
    width: 80px;
    color: white;
    border-style: none;
    padding: 7px;
    border-radius: 5px;
}

.btn-cerrar:hover {
    cursor: pointer;
    background-color: #bb2d3b;
}

.cerrar {
    float: right;
    font-size: 20px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
}

.cerrar:hover {
    color: red;
}

.fila {
    /* border: 1px solid red; */
    min-width: 30px;
    min-height: 30px;
}