

.slick-track {
    display: flex !important;
}

.slick-slide {
    margin: 0 10px;
    height: inherit !important;
}

/* Quiz styles */
.quiz-container {
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.quiz-title {
    color: #2F327D;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 900;
}

.question-number {
    color: #b2cd06;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
}

.question-text {
    text-align: center;
    font-size: 28px;
    color: #2F327D;
    margin-bottom: 30px;
    font-weight: 500;
}

.quiz-option {
    background-color: #E4E4E4; 
    border-radius: 10px; 
    padding: 20px 15px;
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
    font-size: 20px;
    font-weight: 700;
    color: #2F327D;
    border: 2px solid var(--color-gray);;
}

.quiz-option:hover {
    border: 2px solid #B8D107;
}

.quiz-option.selected {
    border: 2px solid #B8D107;
    background-color: #B8D107;
    color: #000000;
}

.quiz-option-letter {
    width: 60px;
    color: #B8D107;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
}

.quiz-option.selected .quiz-option-letter {
    color: #000000;
    font-weight: bold;
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.quiz-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 50px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 20px;
}

.back-button {
    background-color: #DBDBDB;
    color: #000;
}

.next-button {
    background-color: #D5EF25;
    color: #000;
}

.quiz-button span {
    margin: 0 5px;
}

@media (max-width: 767px) {
    .slick-list {
        padding: 0 15% 0 0 !important;
    }

    .quiz-button {
        padding: 12px 20px;
        font-size: 16px;
    }

    .question-text {
        font-size: 18px;
    }
    .quiz-title {
        font-size: 20px;
    }
    .question-number {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .quiz-option {
        font-size: 16px;
        padding: 15px 10px;
    }
}