/* Scope global : le formulaire de gestion */
.mailpoet-manage-subscription {
  font-size: 17px;
  line-height: 1.5;
}

/* Titre/labels */
.mailpoet-manage-subscription label,
.mailpoet-manage-subscription .mailpoet_text_label,
.mailpoet-manage-subscription .mailpoet_select_label,
.mailpoet-manage-subscription legend.mailpoet_segment_label {
  font-size: 18px;
  font-weight: 600;
}

/* Email affiché en <strong> dans le premier <label> */
.mailpoet-manage-subscription label strong {
  font-weight: 700;
  font-size: 18px;
}

/* Paragraphes/lignes du formulaire */
.mailpoet-manage-subscription .mailpoet_paragraph {
  margin: 0 0 14px;
}

/* Inputs texte & email */
.mailpoet-manage-subscription .mailpoet_text,
.mailpoet-manage-subscription input[type="text"],
.mailpoet-manage-subscription input[type="email"],
.mailpoet-manage-subscription input[type="password"],
.mailpoet-manage-subscription select,
.mailpoet-manage-subscription textarea {
  font-size: 16px;
  padding: 10px 12px;
  width: 100%;
  max-width: 520px;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-sizing: border-box;
}

/* Select (Status) */
.mailpoet-manage-subscription select.mailpoet_select {
  height: 42px;
}

/* Cases à cocher des listes (si présentes plus tard) */
.mailpoet-manage-subscription input[type="checkbox"] {
  transform: scale(1.15);
  margin-right: 8px;
}

/* Bouton de soumission */
.mailpoet-manage-subscription .mailpoet_submit,
.mailpoet-manage-subscription input[type="submit"],
.mailpoet-manage-subscription button {
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

/* Loader MailPoet (les 3 points) */
.mailpoet-manage-subscription .mailpoet_form_loading span {
  width: 8px;
  height: 8px;
  margin-left: 4px;
}

/* Messages de succès/erreur */
.mailpoet-manage-subscription .mailpoet-submit-success,
.mailpoet-manage-subscription .mailpoet_message,
.mailpoet-manage-subscription .mailpoet_error {
  font-size: 16px;
  padding: 10px 12px;
  border-radius: 6px;
}

/* Exemple : masquer le champ "Status" si tu ne veux pas l’exposer */
.mailpoet-manage-subscription .mailpoet_select_label,
.mailpoet-manage-subscription select.mailpoet_select {
  /* display: none; */
}

/* Bouton "Save" dans le formulaire de gestion */
.mailpoet-manage-subscription .mailpoet_paragraph input.mailpoet_submit {
  background-color: #888 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 10px 18px !important;
  cursor: pointer;
  transition: background 0.2s ease !important;
}

/* Hover effet */
.mailpoet-manage-subscription .mailpoet_paragraph input.mailpoet_submit:hover {
  background-color: rgb(125, 204, 218) !important; /* gris un peu plus clair */
}