.progress-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    /* Gap between dashes in a set */
    margin-top: 10px;
    margin-bottom: 20px;
}

.progress-set-group {
    display: flex;
    gap: 4px;
}

.progress-spacer {
    width: 12px;
    /* Space between sets */
    height: 1px;
}

.progress-dash {
    width: 30px;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.progress-dash.active {
    background-color: #FF9E00;
    /* Switch Orange */
    transform: scaleY(1.4);
    box-shadow: 0 0 8px rgba(255, 158, 0, 0.5);
}

.progress-dash.completed {
    background-color: #4CAF50;
    /* Success Green */
}

.reminder-text {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    margin-top: 10px;
    min-height: 1.5em;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reminder-text.active {
    opacity: 1;
}