body {
  font-family: Arial, sans-serif;
  background: #f2f2f2;
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  max-width: 400px;
  margin: 50px auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

.title {
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
}

label {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  text-align: left;
  font-weight: bold;
}

select, input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
  display: block;
}

select {
  appearance: none; /* pour uniformiser le style */
  -webkit-appearance: none;
  -moz-appearance: none;
}

button {
  background: #28a745;
  color: white;
  padding: 10px;
  border: none;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #218838;
}

#statusMsg {
  margin-top: 10px;
  color: green;
}

.info {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}