.progress-bar-container {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    height: 6px;
    overflow: hidden;
}

.progress-bar {
    background-color: orange;
    height: 100%;
    border-radius: 8px;
    transition: width 0.1s linear;
}

.alt-option {
    background-color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.alt-option:hover {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.alt-option.locked {
    opacity: 0.6;
}

.time-display {
    font-variant-numeric: tabular-nums;
    font-size: 13px;
    font-weight: 500;
}

.alt-primary {
    background-color: #ff7e5f;
    color: white;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.alt-primary:hover {
    background-color: #ff6a45;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(255, 126, 95, 0.3);
}

.hidden {
    display: none;
}