/**
 * Priego Map Route Widget Styles
 */

.priego-map-container {
    width: 100%;
    min-height: 300px;
    z-index: 1;
    background-color: #f3f4f6;
}

/* Icono de pin personalizado */
.priego-custom-pin {
    background: none !important;
    border: none !important;
}

.pin-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-main {
    width: 20px; /* Más grande */
    height: 20px; /* Más grande */
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 3px solid white; /* Borde más grueso */
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    z-index: 2;
}

.pin-pulse {
    position: absolute;
    width: 36px; /* Más grande */
    height: 36px; /* Más grande */
    border-radius: 50%;
    opacity: 0.5;
    animation: pin-pulse-anim 2s infinite ease-out;
    z-index: 1;
}

@keyframes pin-pulse-anim {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

/* Ocultar el panel de instrucciones */
.leaflet-routing-container {
    display: none !important;
}

/* Botón Google Maps */
.priego-map-button {
    text-decoration: none;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    padding: 6px 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.priego-map-button:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
