/* --- BARRA ALFABÉTICA --- */
.alphabet-filter-wrapper {
    border-radius: 15px;
}

.btn-alphabet {
    border: 2px solid #2f357d;
    color: #2f357d;
    background-color: transparent;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    min-width: 65px;
}

/* Efecto al pasar el mouse */
.btn-alphabet:hover {
    background-color: #2f357d;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(47, 53, 125, 0.2);
}

/* Estado cuando el botón está seleccionado (activo) */
.btn-alphabet.active {
    background-color: #2f357d;
    color: #ffffff;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

/* Ajustes para que en móvil no se vea amontonado */
@media (max-width: 768px) {
    .btn-alphabet {
        flex: 1 1 calc(33.33% - 10px); /* 3 botones por fila en tablet */
        font-size: 0.8rem;
        padding: 8px 5px;
    }
}

@media (max-width: 480px) {
    .btn-alphabet {
        flex: 1 1 calc(50% - 10px); /* 2 botones por fila en cel pequeño */
    }
}