.ol-popup {
    position: absolute;
    display: none;
    background-color: white;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 150px;
    transform: translateX(-10%);
    bottom: 0px;
    left: -50%;
}

.ol-popup th,
.ol-popup td {
    max-width: 250px;       /* Límite de ancho de columna */
    white-space: normal;    /* Permite salto de línea */
    overflow-wrap: normal;  /* No rompe dentro de una palabra */
    word-break: normal;     /* Mantiene las palabras completas */
}

.ol-popup:after, .ol-popup:before {
    top: 100%;
    left: 10%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.ol-popup:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #0d6efd;
    border-width: 10px;
    margin-left: -10px;
}

.ol-popup:before {
    border-color: rgba(204, 204, 204, 0);
    border-top-color: #cccccc;
    border-width: 11px;
    margin-left: -11px;
}


.popup-close-btn {
    position: absolute;
    top: 4px;
    right: 8px;
    font-weight: bold;
    color: #333;
    background: white;
    padding: 2px 6px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}