/* MCQ */
    .progress-container {
        width: 100%;
        margin: 15px 0;
        text-align: center;
    }

    .progress-text {
        margin-bottom: 8px;
        font-weight: 600;
        color: #2c3e50;
        font-size: 14px;
    }

    .progress-bar {
        width: 100%;
        height: 6px;
        background-color: #e0e0e0;
        border-radius: 3px;
        overflow: hidden;
    }

    .progress-bar-fill {
        height: 100%;
        background: linear-gradient(90deg, #3498db, #2980b9);
        width: 0%;
        transition: width 0.3s ease;
        border-radius: 3px;
    }

    /* Enhanced Option Selection Styles */
    .option {
        position: relative;
        padding: 12px 15px 12px 45px;
        border: 2px solid #ddd;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 8px;
        background: white;
    }

    .option:hover {
        border-color: #3498db;
        background-color: #f8f9fa;
    }

    .option.selected {
        border-color: #3498db;
        background-color: #e3f2fd;
    }

    .option.selected::before {
        border-color: #3498db;
        background: white;
    }

    /* .option.selected::after {
        content: "✓";
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #3498db;
        font-weight: bold;
        font-size: 14px;
    } */

    /* Result States */
    .option.correct {
        border-color: #27ae60;
        background-color: #d5f4e6;
    }

    .option.correct::before {
        border-color: #27ae60;
        background: white;
    }

    .option.correct::after {
        content: "✓";
        color: #27ae60;
    }

    .option.incorrect {
        border-color: #e74c3c;
        background-color: #fadbd8;
    }

    .option.incorrect::before {
        border-color: #e74c3c;
        background: white;
    }

    .option.incorrect::after {
        content: "✗";
        color: #e74c3c;
    }

    /* Explanation Styles */
    .explanation {
        margin-top: 15px;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 8px;
        border-left: 4px solid #f39c12;
        font-size: 14px;
        line-height: 1.5;
    }

    .explanation strong {
        color: #e67e22;
    }

    /* Quiz Submit Button */
    .quiz-submit-btn {
        background: #27ae60;
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease;
        margin-top: 20px;
    }

    .quiz-submit-btn:hover {
        background: #219653;
    }

    .quiz-submit-btn:disabled {
        background: #95a5a6;
        cursor: not-allowed;
    }

    /* Score Summary */
    .score-summary {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin: 20px 0;
        border: 2px solid #27ae60;
    }

    .score-breakdown {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 15px;
    }

    .score-correct,
    .score-incorrect,
    .score-total {
        padding: 8px 15px;
        border-radius: 6px;
        font-weight: 600;
    }

    .score-correct {
        background: #d5f4e6;
        color: #27ae60;
    }

    .score-incorrect {
        background: #fadbd8;
        color: #e74c3c;
    }

    .score-total {
        background: #e3f2fd;
        color: #3498db;
    }

    /* Success/Error Messages */
    .success,
    .error,
    .loading {
        padding: 15px;
        border-radius: 5px;
        margin-bottom: 20px;
    }

    .success {
        background-color: #d5f4e6;
        border-left: 4px solid #27ae60;
    }

    .error {
        background-color: #fadbd8;
        border-left: 4px solid #e74c3c;
    }

    .loading {
        background-color: #e3f2fd;
        border-left: 4px solid #3498db;
        text-align: center;
    }

    .option.correct::after {
        content: "✓";
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #3498db;
        font-weight: bold;
        font-size: 14px;
    }


.questions_type li.disabled-premium {
    pointer-events: none;
    opacity: 0.4;
    cursor: not-allowed;
}

.mcq .quiz-questions-main ul li{
    list-style: none
}



/* Mains */
    .progress-container {
        width: 100%;
        margin: 15px 0;
        text-align: center;
    }

    .progress-text {
        margin-bottom: 8px;
        font-weight: 600;
        color: #2c3e50;
        font-size: 14px;
    }

    .progress-bar {
        width: 100%;
        height: 6px;
        background-color: #e0e0e0;
        border-radius: 3px;
        overflow: hidden;
    }

    .progress-bar-fill {
        height: 100%;
        background: linear-gradient(90deg, #3498db, #2980b9);
        width: 0%;
        transition: width 0.3s ease;
        border-radius: 3px;
    }

    /* Question Display Styles */
    .question-item {
        background: white;
        padding: 0;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }

    .question_wrap {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 15px;
    }

    .question-text {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #2c3e50;
        line-height: 1.5;
        flex: 1;
    }

    /* Answer Display Styles */
    .answer-section {
        /* margin-top: 25px; */
        padding-top: 20px;
        /* border-top: 1px solid #eee; */
    }

    .answer-title {
        font-size: 16px;
        font-weight: 600;
        color: #27ae60;
        margin-bottom: 10px;
    }

    .answer-body,
    .answer-conclusion,
    .answer-main,
    .word-count {
        background: #f8f9fa;
        padding: 15px;
        border-radius: 6px;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .answer-body h4,
    .answer-conclusion h4,
    .answer-main h4,
    .word-count h4 {
        margin-top: 0;
        color: #2c3e50;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .word-count {
        display: flex;
        align-items: center;
        text-align: center;
    }

    .word-count h4 {
        margin: 0;
    }

    /* Quiz Submit Button */
    .quiz-submit-btn {
        background: #27ae60;
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease;
        margin-top: 20px;
    }

    .quiz-submit-btn:hover {
        background: #219653;
    }

    .quiz-submit-btn:disabled {
        background: #95a5a6;
        cursor: not-allowed;
    }

    /* Score Summary */
    .score-summary {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin: 20px 0;
        border: 2px solid #27ae60;
    }

    .score-breakdown {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 15px;
    }

    .score-correct,
    .score-incorrect,
    .score-total {
        padding: 8px 15px;
        border-radius: 6px;
        font-weight: 600;
    }

    .score-correct {
        background: #d5f4e6;
        color: #27ae60;
    }

    .score-incorrect {
        background: #fadbd8;
        color: #e74c3c;
    }

    .score-total {
        background: #e3f2fd;
        color: #3498db;
    }

    /* Success/Error Messages */
    .success,
    .error,
    .loading {
        padding: 15px;
        border-radius: 5px;
        margin-bottom: 20px;
    }

    .success {
        background-color: #d5f4e6;
        border-left: 4px solid #27ae60;
    }

    .error {
        background-color: #fadbd8;
        border-left: 4px solid #e74c3c;
    }

    .loading {
        background-color: #e3f2fd;
        border-left: 4px solid #3498db;
        text-align: center;
    }

    /* Questions Header */
    .questions-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }

    .back-to-selection {
        background: #95a5a6;
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        transition: background 0.3s ease;
    }

    .back-to-selection:hover {
        background: #7f8c8d;
    }
        
    .mains-smart .boxes .question-item .answer-section .answer-body p, .mains-smart .boxes .question-item .answer-section .answer-body ul li{
    font-size: unset;
    color: #212529;
    line-height: unset;
    font-weight: unset;
    margin: 0;
    padding: 0;
}

.form-mark {
    display: flex;
    justify-content: end;
    flex-shrink: 0;
}

/* .tag {
    background: #3498db;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
} */

.tag.no-tags {
    background: #95a5a6;
    font-style: italic;
}

.mains-smart .quiz-questions-main .question-item .question_wrap{
    padding: 20px;
}

.mains-smart .quiz-questions-main .question-item .answer-section{
    padding: 20px;
}



