/* Estilos para el contenedor del mapa */
#mapa-rocolas-container {
    height: 500px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

#map {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    z-index: 1;

}

/* Estilos para la lista de rocolas */
#rocolas-list-container {
    margin-top: 30px;
    padding: 20px;
    background-color: #2F2F2F;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#rocolas-list-container h3 {
    text-align: center;
    color: #00FF00;
    margin-bottom: 20px;
    font-weight: 600;
}

#rocolas-list-container ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#rocolas-list-container a {
    text-decoration: none;
    display: block;
    padding: 15px;
    background-color: #E0E0E0;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}

#rocolas-list-container a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#rocolas-list-container a b {
    color: #6A0DAD;
}

#rocolas-list-container small {
    display: block;
    color: #000000;
    margin-top: 5px;
    font-size: 0.9em;
}

/* Estilos para el contenedor del botón flotante */
#boton-rocola-cercana-wrapper {
    position: fixed;
    top: 28px;
    left: 20px;
    z-index: 100;
    /* Las reglas de posicionamiento se aplican al contenedor */
}

/* Estilos para el botón temporal (antes de la transformación) */
.temp-rocola-button {
    display: block;
    padding: 5px 5px;
    border-radius: 6px;
    background-color: #E0E0E0;
    color: #6A0DAD;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease-in-out;
    white-space: nowrap;
}

.temp-rocola-button b {
    color: #6A0DAD;
    font-size: 1em;
}

.temp-rocola-button small {
    display: block;
    color: #333;
    font-size: 0.7em;
    margin-top: 5px;
}

/* Estilos para el botón circular flotante */
.floating-rocola-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #E0E0E0;
    color: #6A0DAD;
    text-decoration: none;
    font-size: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 6;
}

.floating-rocola-button::after {
  /* 1. SE ELIMINA 'content: "🎵";' y otras propiedades de texto */
  
  /* PROPIEDADES NUEVAS PARA LA IMAGEN */
  content: ""; 
  background-image: url('rocola.png');
  background-size: contain; 
  background-repeat: no-repeat; /* Evita que la imagen se repita */
  
  /* TAMAÑO DEL CONTENEDOR (ajusta el width y height según tu PNG) */
  width: 50px; 
  height: 50px;
  
  /* PROPIEDADES QUE YA TENÍAS */
  position: absolute;
  z-index: 6;

}

.floating-rocola-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
    z-index: 6;
}

/* --- Media Query para móviles --- */
@media (max-width: 768px) {
    /* Estilos del mapa y la lista para móviles (sin cambios) */
    #map-and-list-wrapper {
        position: relative;
    }

    #mapa-rocolas-container {
        height: 375px;
        
    }

    #rocolas-list-container {
        position: absolute;
        width: 75%;
        top: 75%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        margin-top: 0;
        margin-top: 30px;
        background-color: rgba(255, 255, 255, 0.9);
        border: 1px solid #ccc;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    #rocolas-list-container h3 {
        color: #333;
    }

    #rocolas-list-container a {
        background-color: #f5f5f5;
    }

    #rocolas-list-container a b {
        color: #6A0DAD;
    }

    #rocolas-list-container a small {
        color: #555;
    }
}