/* ===== RESULT WRAPPER ===== */
.mts-result-wrapper {
    max-width: 100%;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

/* ===== ROLL NUMBER ===== */
.mts-roll {
    background: #f4f6f8;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* ===== SUMMARY TABLE ===== */
.mts-summary {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.mts-summary th,
.mts-summary td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.mts-summary th {
    background: #222;
    color: #fff;
}

/* ===== QUESTION CARD ===== */
.mts-result-card {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    background: #fff;
}

.mts-result-card h4 {
    margin-bottom: 10px;
}

/* ===== OPTIONS ===== */
.mts-opt {
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 6px;
}

/* Correct answer */
.mts-opt.correct {
    background: #e8f5e9;
    border-color: #2e7d32;
    color: #2e7d32;
}

/* Wrong answer */
.mts-opt.wrong {
    background: #fdecea;
    border-color: #c62828;
    color: #c62828;
}

/* ===== TAG ===== */
.mts-opt .tag {
    float: right;
    font-size: 10px;
    background: #333;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
}

/* ===== EXPLANATION ===== */
.mts-explain {
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-left: 4px solid #1976d2;
}
/* Question title size fix */
.mts-result-card h4 {
    font-size: 16px;        /* pehle bahut bada tha */
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: 600;
}
.mts-roll {
    text-align: center;
    background: #f5f7fa;
    padding: 20px;
    border-radius: 6px;
}

.mts-roll h3 {
    margin-bottom: 5px;
    font-size: 16px;
}

.mts-roll strong {
    font-size: 18px;
    letter-spacing: 1px;
}
.mts-opt {
    font-size: 14px;
}

.mts-opt.correct {
    background: #eaf7ea;
}

.mts-opt.wrong {
    background: #fdecec;
}

/* ===== Rank List Full Width Button ===== */
.mts-rank-footer {
    width: 100%;
    margin-top: 30px;
}

.mts-rank-btn-full {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    background: #222;
    color: #fff;
    border: none;
    cursor: pointer;
}

.mts-rank-btn-full:hover {
    background: #000;
}

#mts-rank-box {
    margin-top: 20px;
}


