/**
 * LMS Review Styles
 */
.lms-review-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}

.lms-review-content h3 {
    margin: 0 0 5px 0;
    color: #1d2327;
}

.lms-review-content p {
    margin: 0;
    color: #50575e;
}

#lms-start-review {
    padding: 10px 20px;
    font-size: 16px;
    height: auto;
}

/* Modal Styles */
.lms-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.lms-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.lms-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.lms-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.lms-modal-close:hover {
    color: black;
}

/* Progress Bar */
.lms-progress-container {
    width: 100%;
    background-color: #e2e4e7;
    border-radius: 10px;
    height: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.lms-progress-bar {
    height: 100%;
    background-color: #2271b1;
    width: 0%;
    transition: width 0.3s ease;
}

/* Question Styles */
.lms-question-skill-tag {
    display: inline-block;
    padding: 2px 8px;
    background: #f0f0f1;
    border-radius: 3px;
    font-size: 11px;
    text-transform: uppercase;
    color: #50575e;
    margin-bottom: 10px;
}

.lms-question-prompt {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1d2327;
}

.lms-option-label {
    display: block;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #e2e4e7;
    border-radius: 5px;
    cursor: pointer;
}

.lms-option-label:hover {
    background-color: #f6f7f7;
}

.lms-option-label input {
    margin-right: 10px;
}

/* Feedback Styles */
.lms-feedback {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: bold;
}

.lms-feedback.correct {
    background-color: #edfaef;
    color: #1a5e1a;
    border: 1px solid #7ad03a;
}

.lms-feedback.incorrect {
    background-color: #fcf0f1;
    color: #a00;
    border: 1px solid #dc3232;
}

.lms-modal-footer {
    display: flex;
    justify-content: flex-end;
}

.lms-completion-state {
    text-align: center;
    padding: 20px;
}
