/* Styles spécifiques au formulaire de diagnostic */
#diagnostic-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #FAF9F6;
  border-radius: 1.5rem;
  box-shadow: 0 3px 18px rgba(0,0,0,0.07);
}

#diagnostic-form h2 {
  text-align: center;
  font-size: 2rem;
  color: #3e4e3e;
}

#diagnostic-form p {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #5e6e5e;
}

#diagnostic-form label {
  display: block;
  margin: 1.2em 0 0.2em 0;
  font-weight: bold;
  color: #4a5a4a;
}

#diagnostic-form select, #diagnostic-form button {
  width: 100%;
  padding: 0.7em;
  font-size: 1em;
  border-radius: 8px;
  border: 1px solid #c5d2c1;
  margin-bottom: 1em;
  transition: border 0.2s;
}

#diagnostic-form select:focus, #diagnostic-form button:focus {
  border-color: #8ba88b;
  outline: none;
}

#submit-btn {
  background: #C5D2C1;
  color: #222;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

#submit-btn:hover {
  background: #a3bca3;
}

#resultat {
	  max-width: 600px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 10px;
  padding: 1.2em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  color: #3e4e3e;
}
