/* WordPress Mathreex Bridge Public Styles */

.wp-mathreex-courses {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.wp-mathreex-course {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
}

.wp-mathreex-course h3 {
    margin-top: 0;
}

.course-progress,
.wp-mathreex-course-progress {
    margin: 15px 0;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-fill {
    height: 100%;
    background-color: #4CAF50;
    transition: width 0.3s ease;
}

.course-completed {
    color: #4CAF50;
    font-weight: bold;
}

