/* Loader de carga */
#loader-mapa {
    text-align: center;
    padding: 40px;
}
#loader-mapa span {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Contenedor general */
#contenedor-mapa-lista {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* Lista lateral de sucursales */
#lista-sucursales {
    flex: 1 1 300px;
    max-width: 450px;
    height: 500px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 10px;
    background: #f9f9f9;
}

/* Mapa */
#mapa-sucursales {
    flex: 2 1 600px;
    height: 800px;
    min-width: 300px;
}

/* Estilo de cada sucursal (tipo ficha) */
.sucursal-item {
    cursor: pointer;
    font-size: 14px;
}
.sucursal-item:hover {
    background: #f0f8ff;
    transition: background 0.2s ease;
}

.ficha-sucursal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    gap: 10px;
}

.ficha-texto {
    flex: 1;
    font-size: 14px;
}

.ficha-texto strong {
    font-size: 15px;
    display: block;
    margin-bottom: 3px;
}

.ficha-texto a {
    color: #007BFF;
    text-decoration: none;
    font-size: 13px;
}

.ficha-texto a:hover {
    text-decoration: underline;
}

.ficha-img-wrap {
    width: 80px;
    height: 75px;            /* 👈 fuerza proporción */
    flex-shrink: 0;
    overflow: hidden;        /* 👈 recorta el exceso */
}

.ficha-img {
    width: 100%;
    max-height: 75px;       /* 👈 limita la altura */
    border-radius: 4px;
    object-fit: cover;
}
/* Contenedor del buscador */
#lista-sucursales .bloque-buscador {
    position: relative;
    background: #eeeeee;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 12px;
}

/* Campo de texto del buscador */
#lista-sucursales .bloque-buscador input {
    width: 100%;
    padding: 8px 12px 8px 40px; /* espacio a la izquierda para la lupa */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    background: #fff;
}

/* Ícono de lupa dentro del input */
#lista-sucursales .icono-lupa {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive: stack vertical en móviles */
@media (max-width: 480px) {
    .ficha-sucursal {
        flex-direction: column;
        align-items: flex-start;
    }

    .ficha-img-wrap {
        width: 100%;
        margin-top: 8px;
    }

    .ficha-img {
        width: 100%;
        height: auto;
    }
}

