body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    padding: 20px;
    text-align: center;
}

#addWordForm, #quizSection {
    margin-bottom: 30px;
}

input[type="text"] {
    padding: 10px;
    margin-right: 10px;
    width: 200px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}

#wordList {
    text-align: left;
    margin: 0 auto;
    max-width: 400px;
}

#wordList li {
    list-style: none;
    margin-bottom: 10px;
}

#answerOptions button {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
    padding: 15px;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    color: #333; /* Set the text color to a dark shade for better readability */
}

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

#answerOptions button.wrong {
    background-color: #dc3545;
    color: white;
}


@media (max-width: 600px) {
    input[type="text"], #answerOptions button {
        width: 100%;
    }
}
