/* Horizontal Scroll Container */
.horizontal-scroll-container {
    width: 100%;
    max-width: 100%;
    padding: 10px 0.9rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    transform: translateY(0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar completely */
.horizontal-scroll-container::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

/* Ensure cards don't shrink and maintain their size */
.horizontal-scroll-container>* {
    flex-shrink: 0;
}

/* Scroll Indicators */
.scroll-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    position: relative;
    z-index: 10;
}

.scroll-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.scroll-indicator.active {
    background: #2c5aa0;
    width: 24px;
    border-radius: 4px;
}

.scroll-indicator:hover {
    background: #1e3d6f;
}

/* Wrapper for container and indicators */
.horizontal-scroll-wrapper {
    position: relative;
}

/* Hide vertical scrollbar */
#indoforall-clint-rate-area::-webkit-scrollbar {
    display: none;
}