﻿.progress-page {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.progress-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.progress-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 25px;
}

.progress-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all .2s ease;
}

    .progress-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }

.module-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar {
    height: 8px;
    background: #3da2e3;
    border-radius: 20px;
}

.progress-text {
    font-size: 14px;
    color: #666;
}

.progress-badge {
    display: inline-block;
    background: #d1f3e0;
    color: #1e8f59;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 8px;
}

.quiz-section {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.quiz-score {
    font-size: 14px;
    margin-bottom: 5px;
}

.quiz-pass {
    color: #1e8f59;
    font-weight: 600;
    font-size: 13px;
}

.quiz-fail {
    color: #d93025;
    font-weight: 600;
    font-size: 13px;
}

.quiz-notattempted {
    color: #888;
    font-size: 13px;
}
