#quiz-container {
    text-align: center;
}

h1 {
    color: #333;
}

#play-quiz, #next-question, #play-again, #quit {
    margin-top: 20px;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#question-container, #answer-feedback {
    margin-top: 20px;
}

.english-question {
    background-color: #3498db; /* Blue background for English question */
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.urdu-question {
    background-color: #6d8e8f; /* Red background for Urdu question */
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.english-question p,
.urdu-question p {
    margin: 0;
    font-weight: bold; /* Make text bold */
}

.options {
    display: flex;
    flex-direction: column;
}

.option {
    margin: 10px;
    padding: 10px;
    background-color: #3498db; /* Blue background for answer options */
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.option:hover {
    background-color: #2980b9; /* Darker blue on hover */
}

.correct-background {
    background-color: #27ae60 !important; /* Green background for correct option */
}

.incorrect-background {
    background-color: #e74c3c !important; /* Red background for incorrect option */
}

.correct {
    color: #27ae60;
}

.incorrect {
    color: #e74c3c;
}

.result {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
