/* Hide scrollbars but keep functionality */
.wheel-scroll {
    /* Internet Explorer 10+ */
    -ms-overflow-style: none;
    /* Firefox */
    scrollbar-width: none;
}
.wheel-scroll::-webkit-scrollbar {
    /* Safari and Chrome */
    display: none;
}

/* Items inside the wheel need a fixed height for snapping to work precisely */
.wheel-item {
    height: 60px;
    line-height: 60px;
    scroll-snap-align: center;
    transition: all 0.2s;
    user-select: none;
    -webkit-user-select: none;
}

/* The selected item appears darker/bigger, but since focus is CSS driven, 
we handle partial styling here, though JS will also manage highlighting */
.wheel-item.selected {
    color: #0f172a;
    font-size: 2.25rem;
}
.wheel-item:not(.selected) {
    color: #94a3b8;
    transform: scale(0.8);
    opacity: 0.7;
}

/* Ensure nothing can bounce too much and make modal scrolls jump around */
body {
    overscroll-behavior-y: none;
}
