body{
font-family: Arial;
background:#0f172a;
color:white;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
margin:0;
}

.container{
background:#1e293b;
padding:30px;
border-radius:12px;
width:500px;
text-align:center;
box-shadow:0 0 20px rgba(0,0,0,0.5);
}

#quote span.correct{
color: lightgreen;
}

#quote span.wrong{
color: red;
}

input{
width:100%;
padding:12px;
margin:15px 0;
font-size:16px;
border-radius:6px;
border:none;
}

button{
padding:10px 15px;
margin:5px;
cursor:pointer;
border:none;
border-radius:6px;
background:#3b82f6;
color:white;
}

.progress{
width:100%;
height:10px;
background:#444;
margin-top:10px;
border-radius:5px;
}

#progressBar{
height:100%;
width:100%;
background:lime;
border-radius:5px;
}

/* Light mode */
.light{
background:white;
color:black;
}

.light .container{
background:#f1f5f9;
color:black;
}