/* styles.css */
.quiz-container {
    max-width: 900px;
    margin: 4px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/*h2 {
    color: red;
    font-style: italic;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
}*/
form {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
/*p {
    font-size: 1.1em;
    color: #333;
}*/

label {
    font-size: 1em;
    color: #444;
    margin-left: 10px;
}
input[type="radio"] {
    margin-right: 5px;
}
button {
    background: #04aa6d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 10px;
    transition: background 0.3s;
}
button:hover {
    background: #038856;
}
.try-again, .next-question {
    background: #555;
}
.try-again:hover, .next-question:hover {
    background: #444;
}
.result {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    font-size: 1em;
}
.correct {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.wrong {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
@media (max-width: 480px) {
    .quiz-container {
        margin: 2px;
        padding: 1px;
    }
    /*p, label {
        font-size: 0.9em;
    }*/
    button {
        padding: 8px 15px;
    }
}