/* css/quiz-style.css */
.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: "Montserrat", sans-serif;
}

.question {
    display: none;
    margin-bottom: 20px;
}

.question.active {
    display: block;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option {
    padding: 10px 15px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.option:hover {
    background-color: #e0e0e0;
}

.result {
    display: none;
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 5px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #d08d57;
    border-radius: 5px;
    margin-bottom: 20px;
}

.progress {
    height: 100%;
    background-color: #4CAF50;
    border-radius: 5px;
    width: 0%;
    transition: width 0.3s;
}

.answer-summary {
    text-align: left;
    margin-top: 20px;
    padding: 15px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.answer-item {
    margin-bottom: 15px;
    padding: 10px;
    border-left: 3px solid #ddd;
}

.answer-item.correct {
    border-left-color: #4CAF50;
}

.answer-item.incorrect {
    border-left-color: #f44336;
}