body {
    font-family: Arial, sans-serif;
    text-align: center;
}

#game-container {
    margin-top: 50px;
}

input[type="text"] {
    margin: 10px;
    padding: 5px;
    font-size: 1em;
}

button {
    padding: 10px 20px;
    margin: 10px;
    font-size: 1em;
    cursor: pointer;
    border: none;
    background-color: #4CAF50;
    color: white;
    border-radius: 5px;
}

button:disabled {
    background-color: #ccc;
}

button:hover {
    background-color: #45a049;
}

#buttons-container {
    margin-top: 20px;
}

#player-list li {
    list-style-type: none; /* Supprimer les puces ou les symboles par défaut */
}