.question {
    background: #fff;
    border-left: 5px solid #6e50e4;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .075);
}

.question li {
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.question li:hover {
    background-color: #f2f2f2;
}

.correct-answer {
    background-color: #d1e7dd !important;
    color: #198754;
    font-weight: bold;
}

.incorrect-answer {
    background-color: #f8d7da !important;
    color: #842029;
}

.highlight {
    background-color: #e2e3e5;
    padding: 0.5rem;
    border-left: 3px solid #6e50e4;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.highlight p {
    margin-left: 20px;
    margin-bottom: 0;
}

.result {
    background-color: #fff3cd;
    padding: 1rem;
    border-left: 5px solid #6e50e4;
    border-radius: 0.5rem;
    text-align: center;
}

.btn-custom {
    background-color: #6e50e4;
    color: white;
}

.btn-custom:hover {
    background-color: #5840c4;
    color: #fff;
}

.swiper {
    padding-bottom: 40px;
}

.swiper-slide {
    display: block;
}

.progress-counter {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #6e50e4;
}

.feedback {
    font-weight: bold;
    margin-top: 0.5rem;
}

.feedback.correct {
    color: #198754;
}

.feedback.incorrect {
    color: #842029;
}

.swiper-slide img {
    width: 130px;
    height: 130px;
}

.img-trivia {
    width: 130px;
    height: 130px;
    border-radius: 10px;
    border: 3px solid #fff;
    margin-right: 10px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .question h5 {
        font-size: 1.1rem;
    }

    .highlight {
        flex-direction: column;
        align-items: flex-start;
    }

    .highlight p {
        margin-left: 0;
        margin-top: .5rem;
    }
}