/* Ocultar barra de desplazamiento pero permitir scroll */
.hide-scrollbar {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

.hide-scrollbar::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background: transparent;
    /* Chrome/Safari/Webkit */
    display: none;
}

/* Pulsing Marker Styles */
.pulsing-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    /* Ensure the marker itself can receive pointer events (for tooltips/clicks) */
    pointer-events: auto;
}

.pulsing-marker-dot {
    width: 100%;
    height: 100%;
    background-color: #4285F4;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.pulsing-marker-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(66, 133, 244, 0.6);
    animation: pulse-ring 2s infinite;
    z-index: 1;
    /* The ring should not block interactions */
    pointer-events: none;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}