.scrolling-wrapper {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 10px;
    padding: 12px 10px;
    width: 100%;
    scrollbar-width: none;
    flex-wrap: nowrap;
}

.scrolling-wrapper::-webkit-scrollbar {
    display: none;
}

.filter-btn,
.filter-mapa {
    white-space: nowrap;
    font-size: clamp(0.7rem, 2.5vw, 1rem);
    padding: 8px 16px;
    border-radius: 15px;
    background-color: brown !important;
    color: white !important;
    border: none;
    flex: 0 0 auto;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .scrolling-wrapper {
        padding: 10px 8px;
    }

    .filter-btn,
    .filter-mapa {
        padding: 7px 14px;
        font-size: 0.8rem;
    }
}

@media (min-width: 1025px) {
    .scrolling-wrapper {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: hidden;
    }
}
