.aq-quiz-container {
    background-color: #f9f9f9;
    border: 2px solid #8b4513;
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    margin: 20px auto;
    font-family: 'Georgia', serif;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.aq-quiz-container h3 {
    color: #8b4513;
    text-align: center;
    margin-bottom: 20px;
}

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

.aq-option-btn {
    background-color: #fff;
    border: 1px solid #8b4513;
    border-radius: 5px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 16px;
}

.aq-option-btn:hover {
    background-color: #8b4513;
    color: #fff;
}

.aq-option-btn.correct {
    background-color: #28a745;
    color: #fff;
    border-color: #28a745;
}

.aq-option-btn.wrong {
    background-color: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

.aq-btn {
    display: block;
    width: 100%;
    background-color: #8b4513;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 20px;
}

.aq-btn:hover {
    background-color: #5d2e0d;
}

#aq-score-text {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    margin: 20px 0;
}
