/* Course Progress Styles */
.course-progress {
    padding: 15px;
    background: #f5f5f5;
    border-radius: 5px;
    margin-bottom: 20px;
}

.course-progress .progress {
    height: 13px;
    border-radius: 5px;
    background-color: #e9ecef;
    margin-bottom: 10px;
}

.course-progress .progress-bar {
    background-color: #0d6efd;
    border-radius: 5px;
    transition: width 0.6s ease;
}

.course-progress .text-muted {
    font-size: 14px;
    display: block;
    text-align: center;
}

/* Topic Completion Indicators */
.rbt-check.completed {
    color: #28a745;
}

.rbt-check i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.rbt-check.completed i {
    transform: scale(1.2);
} 