/* Custom CSS for the quiz page */
.profile-body {
    margin-top: 30px;
}

.left-wrapper,
.middle-wrapper,
.right-wrapper {
    padding: 10px;
}

.quiz-question {
    font-weight: bold;
    margin-bottom: 20px;
}

.question-img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.question-table {
    width: 100%;
    border-collapse: collapse;
}

.question-table td {
    padding: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.question-table td.selected {
    background-color: #007bff;
    color: #fff;
}

.question-table td:hover {
    background-color: #f2f2f2;
}

.question-button {
    margin-top: 20px;
    text-align: center;
}

/* Responsive styles */
@media (max-width: 767px) {

    .left-wrapper,
    .right-wrapper {
        display: none;
    }

    .middle-wrapper {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .middle-wrapper {
        width: 70%;
    }

    .left-wrapper,
    .right-wrapper {
        width: 15%;
    }
}

@media (min-width: 992px) {
    .middle-wrapper {
        width: 60%;
    }

    .left-wrapper,
    .right-wrapper {
        width: 20%;
    }
}
