/* Styles généraux */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #c8d401; /* Le jaune/vert de Mensa */
    color: black;
    padding: 5px;
    text-align: center;
}

main {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

fieldset {
    border: 1px solid #c8d401; /*#cccccc;*/
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px; /* Bordures arrondies (optionnel) */
}

legend {
    font-weight: bold;
    padding: 0 10px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

input,
select,
textarea {
    /*width: 100%;*/
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.fwe { /*full-width-element*/
    width: 100%;
}

.btn-prev-page,
.btn-next-page {
    background-color: #006699; /* Couleur bleu moyen */
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.btn-cancel {
    background-color: red;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.btn-submit {
    background-color: green;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}


.required {
    color: red;
}

.not-in-crm {
    color: orange;
    font-weight: bold;
    font-style: italic;
}

.new-feature {
    color: green;
    font-weight: bold;
    font-style: italic;
}


button[type="submit"] {
    background-color: #c8d401; /* Le jaune/vert de Mensa */
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button[type="submit"]:hover {
    background-color: #a0a903; /* Vert Mensa plus foncé */
    color: black;
}

footer {
    text-align: center;
    padding: 1px;
    background-color: #c8d401; /* Le jaune/vert de Mensa */
    color: black;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.radio-group-horizontal label {
    display: inline; /* Garde le contenu du label en ligne */
    font-weight: normal; /* Pour éviter que le texte soit en gras */
    margin: 5px; /* Espacement entre les boutons et les autres éléments */
  }


  /* Un style qui permet de formatter le texte d'un champ en majuscules */
.uppercase-input {
    text-transform: uppercase;
  }

  .lowercase-input {
    text-transform: lowercase;
  }