body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f4f4f4;
}

h1, h2 {
    color: #333;
}

form {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #28a745;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background: #fff;
    margin: 5px 0;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Styles pour agrandir les sélecteurs */
select {
    width: 100px; /* Largeur des sélecteurs */
    padding: 10px; /* Espacement interne */
    margin-right: 10px; /* Espacement entre les sélecteurs */
}

button {
    margin-top: 10px; /* Espacement au-dessus du bouton */
    padding: 10px 15px; /* Espacement interne du bouton */
}

/* Styles pour le conteneur du formulaire */
form {
  display: block;
  align-items: center;
  margin-bottom: 20px;
}