/* Prevents the entire page from having horizontal scroll */
html, body {
    overflow-x: hidden !important;
}

/* Scroll snap container */
.carrousel-cartes {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    max-width: 100% !important;
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE/Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.carrousel-cartes::-webkit-scrollbar {
    display: none !important;
}

/* Ensure child elements snap properly */
.carrousel-cartes > * {
    scroll-snap-align: start !important;
    flex-shrink: 0 !important;
}
