#map-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.096); /* Blanco transparente */
    border-radius: 10px;
    margin-top: 75px;
    padding: 5px;
    margin-left: 35%;
    margin-right: 50%;
}

svg {
    width: 100%;
    height: auto;
}

/* Tooltip estilo */
.tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    border-radius: 5px;
    display: none;
}

/* Modal estilo */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal.active {
    display: block;
}

/* .modal-header {
    font-size: 18px;
    margin-bottom: 10px;
} */

.modal-close {
    cursor: pointer;
    color: red;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* color:  */
}


/* Estilo de la cabecera del modal */
.modal-header {
    /* background-color: #333;
    color: white; */
    padding: 10px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    position: relative;
}

/* Estilo del botón para cerrar el modal */
.modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.5em;
    cursor: pointer;
}

/* Estilo del cuerpo del modal */
.modal-body {
    padding: 20px;
    background-color: white;
    font-size: 1em;
    color: #333;
}

/* Estilo de la tabla */
table {
    border-radius: 5px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    background-color: white;
}

/* Estilo de las celdas y encabezados de la tabla */
th,
td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

/* Estilo de los encabezados de la tabla */
th {
    background-color: #f4f4f4;
    font-size: 1.1em;
    font-weight: bold;
}

/* Estilo de las filas de la tabla */
tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Estilo para el texto general */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 10px;
    color: #222;
}

/* Estilos adicionales para pantallas pequeñas */
@media (max-width: 768px) {
    #map-container {
        max-width: 100%; /* Ocupa todo el ancho en pantallas pequeñas */
        margin-left: 0;
        margin-right: 0;
    }
    
    .modal {
        width: 90%;
        max-height: 80%; /* Limita el tamaño del modal */
    }
}