.create-quiz-button {
    width: 100%;
    font-size: 25px;
    font-weight: bold;
    border-radius: 10px;
    margin-top: 5px;
}

.create-quiz-button:disabled {
    background-color: gray;
    color: white;
}

.result-section {
    display: none;
    width: 100%;
    border: 1px solid lightgray;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.quiz-item-template {
    display: none;
}

.quiz-item {
    perspective: 1000px;
    width: 100%;
    height: 200px;
    cursor: pointer;
}

.quiz-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.quiz-navigation {
    display: flex;
    margin-top: 15px;
    gap: 10px;
}

.quiz-navigation button {
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    background-color: white;
    border: 1px solid black;
    color: black;
    font-size: 16px;
}

.quiz-counter {
    margin-bottom: 10px;
    font-weight: bold;
}

.quiz-item-question {
    font-size: 20px;
    font-weight: bold;
}

.quiz-item-answer {
    font-size: 20px;
    font-weight: normal;
}

.quiz-item-answer-wrapper.correct {
    background-color: rgba(76, 175, 80, 0.2);
    border-left: 3px solid #4CAF50;
}

.quiz-item-answer-wrapper.incorrect {
    background-color: rgba(244, 67, 54, 0.2);
    border-left: 3px solid #F44336;
}

.quiz-item.answered .quiz-item-answer-wrapper:not(.correct):not(.incorrect) {
    opacity: 0.6;
}

.quiz-item.answered input[type="radio"]:disabled + label {
    cursor: not-allowed;
}