body {
    font-family: Arial, sans-serif;
    background-color: rgb(0, 182, 195);
    margin: 0;
    padding: 0;

}

#app {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 50px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    line-height: 150%;
    overflow-x: hidden; /* Empêche tout débordement horizontal */
}

header {
    text-align: center;
    margin-bottom: 20px;
}

.question-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.question-text {
    flex: 1; /* Prenez tout l'espace disponible */
}

.answers {
    display: flex;
    flex-direction: row;
    gap: 1rem; /* Espace entre les boutons radio */
}

label {
    margin: 0;
}
.logo {
    max-width: 100px;
}

h1 {
    font-size: 1.5em;
    margin: 10px 0;
    color: plum;
}

h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color:cadetblue;
}

label {
    display: block;
    margin-bottom: 10px;
}

.buttons {
    margin-top: 20px;
    text-align: center;
}


button:hover {
    background-color: plum;
}

footer {
    text-align: center;
    margin-top: 20px;
}

footer p {
    color: #777;
    font-size: 0.9em;
}

 button {
    background-color: purple;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0;
    cursor: pointer;
    gap: 5px

}

a{
    text-decoration: none;
}
a:hover{
    color: purple;
}

.print-button{
    margin-top: -150px;
   margin-left: 392px;
}

.button-container {
    display: flex;
    gap: 384px;
}

.buttons-next-prev{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.button-container button {
    background-color: purple;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0;
    cursor: pointer;
    transition: background-color 0.3s;

}

.button-container button:hover {
    background-color: plum;
}

@media (width < 768px) {
    .button-container {
        display: flex;
        gap: 5px;
    }
}
@media print {
  button {
    display: none;
  }
}
