body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: #f0f0f0;
}

.container {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

input, button {
    padding: 0.5rem;
    margin: 0.5rem;
    font-size: 1rem;
}

#message {
    color: #333;
    font-weight: bold;
    min-height: 1.5rem;
}

/* Add to style.css */
.correct { color: green; }
.wrong { color: red; }

button:disabled {
    background: #ddd;
    cursor: not-allowed;
}

#score {
    color: #2ecc71;  
    font-weight: bold;
    font-size: 1.2em;
    margin-left: 5px;
    display: inline-block; /*aligns properly with text*/
    transition: all 0.3s ease; /* Smooth color/size changes */
}

#score.updated {
    transform: scale(1.1);
    color: #27ae60;
  }