/* Estilo del botón de Centros Asistenciales */
.leaflet-control-centros-asistenciales.leaflet-bar {
    background-color: #fff;
    border: 2px solid rgba(0,0,0,0.2);
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.12s ease;
    user-select: none;
    -webkit-user-select: none;
    border-radius: 4px;
    margin: 0 !important;  /* Márgenes controlados por el contenedor */
}

.leaflet-control-centros-asistenciales.leaflet-bar:hover {
    background-color: #f2f8fc;
    border-color: rgba(0,0,0,0.3);
}

.leaflet-control-centros-asistenciales.leaflet-bar:active {
    transform: scale(0.98);
}

.leaflet-control-centros-asistenciales.leaflet-bar.activa {
    background-color: #FF7B00 !important;
    border-color: #cc6200;
}

/* Tooltip touch para móviles */
.leaflet-control-centros-asistenciales-tooltip-touch {
    position: fixed;
    background: rgba(0,0,0,0.88);
    color: #fff;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 0.78rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.12s ease;
    z-index: 100000;
    pointer-events: none;
    transform-origin: right center;
}

.leaflet-control-centros-asistenciales-tooltip-touch.visible {
    opacity: 1;
}

@media (max-width: 360px) {
    .leaflet-control-centros-asistenciales-tooltip-touch {
        font-size: 0.72rem;
        padding: 5px 7px;
    }
}
