.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: #6F4F37;
    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;
    }

    .scrolling-wrapper::-webkit-scrollbar {
    height: 2px; /* Tamaño de la barra */
}

.scrolling-wrapper::-webkit-scrollbar-thumb {
    background-color: #ffc451; /* Color del "pulgar" del scroll */
   
}

.scrolling-wrapper::-webkit-scrollbar-track {
    background: #ffe5e5; /* Color del fondo de la barra */
}

}
