/* Popup Leaflet POELP */
.poelp-leaflet-popup .leaflet-popup-content-wrapper {
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 9px;
}

.poelp-leaflet-popup .leaflet-popup-content {
    margin: 0;
    width: auto !important;
}

.poelp-leaflet-popup .leaflet-popup-tip {
    background: #6a7c86;
}

.poelp-leaflet-popup a.leaflet-popup-close-button {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    z-index: 5;
}

.poelp-leaflet-popup a.leaflet-popup-close-button:hover {
    color: #ffffff;
}

/* Tarjeta interna */
.poelp-popup-card {
    position: relative;
    width: 310px;
    box-sizing: border-box;
    background: rgba(106, 124, 134, 0.96);
    color: #e5e7eb;
    border-radius: 8px;
    padding: 14px;
    font-family: 'Inter', 'Montserrat', Arial, sans-serif;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

/* Textura muy sutil */
.poelp-popup-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08), transparent 22%),
        radial-gradient(circle at 80% 10%, rgba(255,255,255,0.05), transparent 24%);
    pointer-events: none;
}

/* Encabezado */
.poelp-popup-head {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    z-index: 1;
}

.poelp-popup-badge {
    flex: 0 0 auto;
    max-width: 82px;
    background: #f59e0b;
    color: #111827;
    border-radius: 2px;
    padding: 7px 8px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    text-align: center;
}

.poelp-popup-title-wrap {
    padding-right: 22px;
}

.poelp-popup-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 3px;
}

.poelp-popup-subtitle {
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
}

/* Cuerpo */
.poelp-popup-body {
    position: relative;
    z-index: 1;
    margin-top: 13px;
}

.poelp-popup-row {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-size: 12px;
    line-height: 1.35;
    margin-bottom: 4px;
    color: #cbd5e1;
}

.poelp-popup-row span {
    color: #fff;
    font-weight: 600;
}

.poelp-popup-row b {
    color: #ffffff;
    font-weight: 800;
}

.poelp-popup-separator {
    position: relative;
    z-index: 1;
    height: 1px;
    background: rgba(148, 163, 184, 0.35);
    margin: 11px 0 10px;
}

/* Nota */
.poelp-popup-note {
    position: relative;
    z-index: 1;
    background: rgb(240, 231, 223);
    border-left: 3px solid #403f3e;
    color: #000;
    padding: 9px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
}