/* Elite Scroller Styles */
.wheel-picker-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    /* Highly compact */
    overflow: hidden;
    background: #fdfdfc;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 1.5rem 0;
    /* Mask for fade effect */
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.wheel-column {
    height: 100%;
    width: 60px;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.wheel-column::-webkit-scrollbar {
    display: none;
}

.wheel-item {
    height: 40px;
    /* Reduced item height */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    /* Clean Sans-Serif */
    font-size: 1.1rem;
    /* Smaller base size */
    color: #a0a0a0;
    scroll-snap-align: center;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    opacity: 0.5;
    font-variant-numeric: tabular-nums;
    /* Monospace numbers for alignment */
}

/* Active item style */
.wheel-item.selected {
    color: #047857;
    font-weight: 600;
    /* Semi-bold */
    font-size: 1.3rem;
    /* Tighter selected size */
    transform: scale(1.05);
    /* Subtle scale */
    opacity: 1;
}

.wheel-separator {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #047857;
    margin: 0 10px;
    padding-bottom: 4px;
    /* Optical alignment */
}

/* Central Highlight Bar (Subtle) */
.wheel-selection-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    right: 10px;
    height: 40px;
    background: rgba(4, 120, 87, 0.05);
    /* Very light green */
    border-radius: 8px;
    pointer-events: none;
    z-index: 1;
    border-top: 1px solid rgba(4, 120, 87, 0.1);
    border-bottom: 1px solid rgba(4, 120, 87, 0.1);
}

/* Button Refinement */
.time-confirm-btn {
    width: 100%;
    background: #047857;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 12px;
    border-radius: 12px;
    border: none;
    margin-top: 1rem;
    cursor: pointer;
    transition: transform 0.1s;
}

.time-confirm-btn:active {
    transform: scale(0.98);
}