body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.navbar {
    background-color: #333;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar h1 {
    margin: 0;
    font-size: 24px;
}

.score-container {
    display: flex;
    gap: 20px;
    font-size: 18px;
}

.quiz-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#question-slide {
    text-align: center;
}

#section-title {
    color: #333;
}

#question-text {
    font-size: 20px;
    margin: 20px 0;
}

.option {
    display: block;
    margin: 10px auto;
    padding: 10px;
    width: 80%;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.option.selected {
    background-color: #007bff;
    color: white;
}

.option.correct {
    background-color: #28a745;
    color: white;
}

.option.incorrect {
    background-color: #dc3545;
    color: white;
}

#explanation {
    margin: 20px 0;
    padding: 15px;
    background-color: #e8f4f8;
    border-left: 4px solid #007bff;
}

.btn {
    padding: 10px 20px;
    margin: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #0056b3;
}

.hidden {
    display: none;
}