.edu-lms-wrap {
    max-width: 800px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
}

.edu-progress {
    height: 6px;
    background: #eee;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
}

.edu-progress-bar {
    height: 6px;
    background: #4caf50;
    transition: width .3s ease;
}

.edu-progress-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.edu-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.edu-answers {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.edu-answer {
    display: block;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all .2s ease;
    background: #fff;
}

.edu-answer:hover {
    border-color: #4caf50;
    background: #f6fff6;
}

.edu-answer input {
    display: none;
}

.edu-answer span {
    font-size: 15px;
}

.edu-answer input:checked + span {
    font-weight: bold;
}
.answers .answer-btn.green {
    background: #4caf50;
    border-color: #4caf50;
    color: #fff;
}

.answers .answer-btn.red {
    background: #f44336;
    border-color: #f44336;
    color: #fff;
}
.edu-message {
    min-height: 40px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.edu-message.correct {
    color: green;
}

.edu-message.wrong {
    color: red;
}
