/**
 * Estilos para mapas de Puntos de Venta
 */

/* Contenedor del mapa principal */
#pdv-map {
  /*  border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;*/
}

/* Contenedor del mapa en el buscador */
#pdv-finder-map {
   /* border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 400px;
    width: 100%;*/
}

/* Estilos para la ventana de información */
.pdv-info-window {
    padding: 10px;
    max-width: 250px;
}

.pdv-info-window h4 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #333;
    font-weight: bold;
}

.pdv-info-window p {
    margin: 5px 0;
    font-size: 14px;
}

.pdv-info-window a.button {
    display: inline-block;
    margin-top: 8px;
    padding: 5px 15px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.pdv-info-window a.button:hover {
    background-color: #0085ba;
}

/* Estilos para los marcadores según categoría */
/* Se aplicarán mediante JavaScript */

/* Estilos para los clusters de marcadores */
.cluster {
    color: white;
    font-weight: bold;
    text-align: center;
}



/* Estilos específicos para categorías */


/* Estilos responsivos */
@media (max-width: 768px) {
    .pdv-finder-columns {
        flex-direction: column;
    }
    
    .pdv-finder-left,
    .pdv-finder-right {
        width: 100%;
    }
    
    .pdv-finder-map {
        margin-top: 20px;
    }
}