body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f9;
    padding-top: 50px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#status_message {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

#allumettes_count {
    font-size: 2em;
    color: #d9534f; /* Couleur rouge pour les allumettes */
    margin-bottom: 30px;
}

#actions button {
    padding: 10px 20px;
    font-size: 1.1em;
    margin: 5px;
    cursor: pointer;
    background-color: #5cb85c;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#actions button:hover:not(:disabled) {
    background-color: #4cae4c;
}

#actions button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.gagne { color: green; }
.perdu { color: red; }