.row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quiz-question {
    text-align: center;
    margin-bottom: 20px;
}

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

.question-list-group {
    list-style-type: none;
    padding: 0;
}

.question-answers {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

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

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

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

.question-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.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;
}

/* other */

ul.question-list-group {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li.box {
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    transition: background-color 0.2s ease-in-out;
}

li.box:hover {
    background-color: #f0f0f0;
}

li.box.selected {
    background-color: #007bff;
    color: #fff;
}

/* ANOTHER */
/* Quiz css */

.quiz-question {
    font-weight: bold;
    text-align: center;
}

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

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

.question-answers {
    padding: 10px;
    border: 1px solid #ccc;
}

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

.question-button {
    text-align: center;
}

input.btn {
    margin-top: 10px;
}

@media (max-width: 768px) {
    /* Responsive CSS */

    .quiz-question {
        text-align: left;
    }

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

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

    .question-answers {
        padding: 10px;
        border: 1px solid #ccc;
    }

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

    .question-button {
        text-align: center;
    }

    input.btn {
        margin-top: 10px;
    }
}
