/* Police et arrière-plan général */
body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #000;
  margin: 30px;
}
@media print {
  .print-btn {
    display: none;
  }
}

/* Titre principal */
h1 {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  border: 2px solid black;
  padding: 10px;
  margin-bottom: 30px;
}

/* Formulaire global */
form {
  max-width: 800px;
  margin: auto;
  border: 1px solid #000;
  padding: 20px;
  box-shadow: 0 0 5px #999;
  background-color: #f9f9f9;
}

/* Label et champs */
label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

input[type="text"],
input[type="number"],
input[type="date"],
textarea {
  width: 100%;
  padding: 6px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Champs alignés sur une ligne */
label[for="h"],
label[for="f"],
label[for="e"],
label[for="nbp"],
label[for="nvp"] {
  display: inline-block;
  width: auto;
  margin-right: 15px;
}

/* Textareas */
textarea {
  resize: vertical;
  height: 80px;
}

/* Bouton */
button[type="submit"] {
  margin-top: 20px;
  background-color: #2c3e50;
  color: white;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #1a242f;
}
