/* ── ReadyFill Live Map widget ────────────────────────────────────────────── */

#rf-map-wrapper {
    max-width: 960px;
    margin: 40px auto;
    padding: 20px 20px 28px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #4C3222;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.22);
}

#rf-map {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    z-index: 0;
    position: relative;
}

#rf-map-status {
    text-align: center;
    font-size: 13px;
    color: #e8d8ce;
    margin-top: 10px;
    min-height: 18px;
}

/* ── Legend ──────────────────────────────────────────────────────────────── */
.rf-map-legend {
    display: flex;
    gap: 24px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.rf-map-legend-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #e8d8ce;
    font-weight: 500;
}

.rf-map-legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2.5px solid #4C3222;
    box-shadow: 0 0 0 1.5px rgba(255,255,255,0.3);
}

/* ── Premium provider pin ────────────────────────────────────────────────── */
.rf-map-premium-pin {
    width: 22px;
    height: 22px;
    background: #7B2FBE;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #7B2FBE, 0 2px 6px rgba(0,0,0,0.35);
}

/* ── Popup ───────────────────────────────────────────────────────────────── */
.rf-map-popup {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    line-height: 1.55;
    min-width: 150px;
}

.rf-map-popup p {
    margin: 5px 0 0;
    color: #4C3222;
}

.rf-map-popup strong {
    color: #4C3222;
    font-size: 14px;
}

.rf-map-popup-badge {
    display: inline-block;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

/* ── Mobile-only fixes (≤ 480px) ─────────────────────────────────────────── */
@media (max-width: 480px) {
    #rf-map-wrapper {
        margin: 16px 0;
        padding: 14px 14px 20px;
        border-radius: 8px;
    }
    .rf-map-legend {
        gap: 12px;
    }
    .rf-map-legend-item {
        font-size: 12px;
    }
}
