body {
    background-color: #1e1e1e;
    color: white;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background-color: #2f2f2f;
    border-radius: 8px;
}

h1 {
    text-align: center;
    font-size: 2em;
    color: #7289da; /* couleur bleue de Discord */
}

.quests {
    margin-top: 30px;
}

.quest {
    background-color: #36393f;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.quest h2 {
    color: #7289da; /* Titre bleu */
}

.quest p {
    font-size: 1.1em;
    line-height: 1.6em;
}

form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100px;
    text-align: center;
}

button:disabled {
    background-color: #555;
    cursor: not-allowed;
}

button[value="oui"] {
    background-color: #4CAF50; /* Vert pour "Valider" */
    color: white;
}

button[value="oui"]:hover {
    background-color: #45a049;
}

button[value="non"] {
    background-color: #f44336; /* Rouge pour "Refuser" */
    color: white;
}

button[value="non"]:hover {
    background-color: #da190b;
}

button:focus {
    outline: none;
    box-shadow: 0 0 5px 2px rgba(255, 0, 0, 0.5);
}

p {
    font-size: 1.1em;
    margin-top: 10px;
    font-weight: bold;
}

p:last-child {
    color: #ffcc00; /* Doré pour les réponses */
}
