*{margin: 0;
    padding: 0;
   font-family: 'Poppins', sans-serif;
   box-sizing: border-box;
  }

body{
    background: #041e50;
  }

.main-box{



background: white;
border-radius: 15px;
min-height: 55vh;
width: 65vw;
display: inline-flex;
flex-direction: column;
position: absolute;
top:50%;
left: 50%;
transform: translate(-50%,-50%);
padding: 30px;

max-width: 600px;
gap: 15px;


}

#title,#question{
    color: #041e50;
    
}

.answers li{
    list-style: none;
    border: 2px solid #ccc; /* Add border to list elements */
    border-radius: 5px;
    padding: 12px; /* Optional: Add padding to list elements */
    cursor: pointer;
    transition: background-color 0.3s ease;
    
}



.answers{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#next_button{
    margin-top: 15px;
    text-align: center;
    
    
}

#next_button button{
    background: #041e50;
    padding: 15px 50px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    color: white;
}

.true{
    background: #4CAF50;
}

.incorrect-answer {
    background: #FF0000; 
    
}

/* Ajoutez une classe pour appliquer un style au bouton désactivé */
#next_button button:disabled {
    opacity: 0.5; /* Opacité réduite pour montrer que le bouton est désactivé */
    cursor: not-allowed; /* Curseur non autorisé pour indiquer qu'il est désactivé */
}

