body {
    font-family: Arial, sans-serif;
    background-color: #add8e6; /* Azul claro */
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh; /* Asegura que el cuerpo cubra toda la ventana */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: #f1dde5;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 450px;
    height: 100%;
}

h1 {
    font-size: 1.5em;
}

label, input, button, p {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.1em; /* Aumentar tamaño de las letras */
}
.partial-answers-signo{
    display: flex;
    gap: 30px;
    justify-content: center; /* Center-aligns the inputs horizontally */
    margin-bottom: 20px;
}

.partial-answers {
    display: flex;
    gap: 30px;
    justify-content: center; /* Center-aligns the inputs horizontally */
    margin-bottom: 20px;
}

.partial-answers2 {
    display: flex;
    gap: 30px;
    justify-content: center; /* Center-aligns the inputs horizontally */
    margin-bottom: 20px;
}

input[type="number"] {
    width: 15%; /* Reduce input width */
    padding: 5px;
    font-size: 16px;
    text-align: center; /* Center-aligns the text inside the input fields */
}

#finalAnswer {
    width: 20%; /* Same width as other inputs */
    margin: 0 auto 15px auto; /* Center align */
    display: block;
    padding: 5px;
    font-size: 16px;
    text-align: center; /* Center-aligns the text inside the final answer input */
}


.button-container {
    display: flex;
    justify-content: space-around;
}

button {
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 45%;
    font-size: 1.1em;
}

button:hover {
    background-color: #218838;
}

#feedback {
    color: red;
    font-size: 1.1em;
}

#score, #correctCount, #incorrectCount, #percentage {
    font-weight: bold;
    font-size: 1.1em;
}

button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}
