/* --- Simulateur minimaliste --- */
.watch-revision-form {
  font-family: Oswald, system-ui, sans-serif;
  color: #000;
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 0;
}

.watch-revision-form h2 {
  text-align: center;
  margin: 0 0 1.5rem 0;
  font-weight: 600;
  font-size: 1.8rem;
}

.watch-revision-form label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
  font-size: 1rem;
}

.watch-revision-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Bouton */
.watch-revision-form .btn {
  display: inline-block;
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.watch-revision-form .btn:hover {
  opacity: 0.85;
}

/* Zone résultat */
.wrs-result {
  margin-top: 20px;
}

.wrs-result h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

#wrs-estimated {
  font-size: 1.5rem;
  font-weight: 700;
}