/* Ajustement visuel global */
.pwv-panel {
  margin: 20px auto;
  max-width: 800px;
}

/* Boîte d'explication */
.info-zone {
  background: #f7f9fc;
  border: 1px solid #e0e6f1;
  border-radius: 6px;
  font-size: 13.5px;
  margin-bottom: 25px;
  color: #444;
}

/* Options (lignes) */
.pwv-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 12px 8px;
}
.pwv-option:last-child {
  border-bottom: none;
}

/* Texte à gauche */
.pwv-text h5 {
  margin: 0;
  font-size: 15px;
  color: #222;
  font-weight: 600;
}
.pwv-text p {
  font-size: 13px;
  color: #666;
  margin: 3px 0 0;
}

/* Checkbox ajustée */
.pwv-option input[type="checkbox"] {
  transform: scale(1.2);
  margin-right: 10px;
  accent-color: #6a3bc2; /* ton mauve */
}

/* Bouton principal */
.pwv-panel .btn-primary {
  background-color: #6a3bc2;
  border-color: #5b2cb4;
  transition: all 0.2s ease;
}
.pwv-panel .btn-primary:hover {
  background-color: #5b2cb4;
  transform: scale(1.03);
}

