/* 
 * Progress Bar Override Styles
 * This file contains high-specificity overrides for progress bar styling
 */

/* Light theme progress bar - white background */
.theme-light .progress {
    background-color: #ffffff !important;
    border: 1px solid #dee2e6;
}

/* Dark theme progress bar - black background */
.theme-dark .progress {
    background-color: #212529 !important;
    border: 1px solid #495057;
}

/* Current part text - black in light mode */
.theme-light .progress + small.text-muted {
    color: #212529 !important;
}

/* Current part text - white in dark mode */
.theme-dark .progress + small.text-muted {
    color: #ffffff !important;
}
