#map {
    height: 100vh;
    width: 100%;
}

.floating-menu {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.floating-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.floating-menu ul li {
    margin-bottom: 10px;
}

.floating-menu ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #0000008a;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    transition: background-color 0.3s, box-shadow 0.3s;
    position: relative;
}

.floating-menu ul li a .placeholder {
    display: none;
    position: absolute;
    bottom: -25px;
    left: 112%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 100;
    transform: translateY(-111%);
}

.floating-menu ul li a:hover .placeholder {
    display: block;
}

.floating-menu ul li a:hover {
    background-color: #333333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.custom-icon .pulse {
    width: 10px; /* Ajustar el tamaño del icono de ubicación en tiempo real */
    height: 10px; /* Ajustar el tamaño del icono de ubicación en tiempo real */
    background: rgba(0, 0, 255, 0.5);
    border-radius: 50%;
    animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}