.scrolling-wrapper {
    display: flex;
    justify-content: center; /* Centra los elementos en el contenedor */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 10px;
    padding: 10px;
}

.text-center {
    display: flex;
    flex-wrap: nowrap; /* No envolver los botones */
    gap: 10px;
    justify-content: center; /* Centrar los botones */
}

.filter-btn , .filter-mapa{
    white-space: nowrap; 
    font-size: 1rem;
    padding: 5px 10px;
    border-radius: 15px;
    background-color: #C80000 !important;
    color: white !important;
    border: none;
    
    flex-shrink: 0; 
}

@media (max-width: 768px) {
    .scrolling-wrapper {
        justify-content: flex-start; /* Alinear los elementos al inicio para dispositivos móviles */
    }

    .filter-btn , .filter-mapa {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}

