/* PAGE RECHERCHE SALARIE */
.container-form {
  margin-top: 100px;
}
/* PAGE REPONSE RECHERCHE SALARIE */
.container-form {
  margin-top: 80px;
}
#propositions_praticiens {
  margin-top: 6px;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  width: 100%;
}
#propositions_praticiens:empty {
  border: none;
}
#propositions_praticiens .praticien-option {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
#propositions_praticiens .praticien-option:hover {
  background-color: #e9e9e9;
}
.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}
.autocomplete {
  padding-left: 0px;
  padding-right: 0px;
}

/* LISTE SALARIES */
body {
  font-family: "Brandon Grotesque", Arial, Helvetica, sans-serif;
}
/* Style général pour le tableau */
.table-salaries {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* En-tête du tableau */
.table-salaries th {
  background-color: #2aa7ab;
  color: white;
  padding: 12px;
  text-align: left;
  font-weight: bold;
}

/* Style des lignes du tableau */
.table-salaries td,
.table-salaries th {
  padding: 10px;
  /* border: 1px solid #ddd; */
  text-align: center;
}

/* Lignes alternées */
.table-salaries tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Ligne survolée */
.table-salaries tr:hover {
  background-color: #ddd;
}

/* Première ligne (en-tête) - spécial pour le style */
.table-salaries th {
  font-size: 1.1em;
}

/* Bordure du tableau */
.table-salaries {
  border: 2px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

/* Espacement autour du tableau */
.table-salaries {
  margin: 0 auto;
}

.td-actions {
  display: flex;
  gap: 10px;
}

.salaries-actions-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.salaries-actions-container > div,
.salaries-actions-container form {
  display: flex;
  align-items: center;
  gap: 20px;
}

.salaries-actions-container a,
.search-form button,
.table-salaries a,
.gnrl-link {
  padding: 12px 20px;
  font-weight: 700;
  box-sizing: border-box;
  border-radius: 12px 0px 12px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-color: transparent;
  color: #334271;
  height: 40px;
  border-radius: 15px 15px 15px 0px;
  background-color: #2aa7ab;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  width: max-content;
  font-size: 14px;
}

.salaries-actions-container a:hover,
.search-form button:hover,
.table-salaries a:hover,
.gnrl-link:hover {
  background-color: #249e9d;
  transform: translateY(-2px); /* Légère élévation */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Ombre légère */
}
.delete-salarie {
  background-color: red !important;
}
.edit-salarie {
  background-color: #ed6d05 !important;
}
.search-form input {
  height: 40px;
  padding: 0 15px;
  /* font-size: 1rem; */
  border: 2px solid #d6dadf;
  border-radius: 5px;
  background-color: #f4f7fb;
  color: #334271;
  box-sizing: border-box;
  width: 100%;
  transition: border-color 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.search-form input:focus {
  border-color: #2aa7ab;
  background-color: #ffffff;
  box-shadow: 0 0 8px rgba(42, 167, 171, 0.4);
  outline: none;
}

.search-form input::placeholder {
  color: #a1a8b2;
  font-style: italic;
}

/* Style global pour les champs de saisie */
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select,
form textarea {
  height: 40px;
  padding: 0 15px;
  border: 2px solid #d6dadf;
  border-radius: 5px;
  background-color: #f4f7fb;
  color: #334271;
  font-size: 1rem;
  box-sizing: border-box;
  /* width: 100%; */
  transition: border-color 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.salarie-info input {
  width: 100%;
}

/* Style lors du focus sur les champs */
form input:focus,
form select:focus,
form textarea:focus {
  border-color: #2aa7ab;
  background-color: #ffffff;
  box-shadow: 0 0 8px rgba(42, 167, 171, 0.4);
  outline: none;
}

/* Style pour les placeholders */
form input::placeholder,
form select::placeholder,
form textarea::placeholder {
  color: #a1a8b2;
  font-style: italic;
}

/* Style pour les boutons */
form button {
  padding: 10px 20px;
  background-color: #2aa7ab;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

form button:hover {
  background-color: #248f8a;
  transform: scale(1.05);
}

/* Style pour les légendes des fieldsets */
form fieldset legend {
  color: #ed6d05;
  margin-bottom: 10px;
  padding: 0 10px;
  font-weight: bold;
}
form fieldset label {
  margin-bottom: 20px;
  font-weight: bold;
}
select {
  cursor: pointer;
}
.add-salarie {
  width: 50%;
  margin: 0 auto;
}
.depot-salarie {
  min-width: 1000px;
}
.add-salarie fieldset {
  column-gap: 20px;
  border: 2px solid #d6dadf;
  margin-bottom: 10px;
}

.add-salarie fieldset input,
.add-salarie fieldset select {
  margin-bottom: 15px;
  margin-top: 5px;
}

/* Style de l'input file */
form input[type="file"] {
  display: block;
  padding: 8px 12px;
  font-size: 1rem;
  color: #334271;
  background-color: #f4f7fb;
  border: 2px solid #d6dadf;
  border-radius: 5px;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* Effet focus sur le champ fichier */
form input[type="file"]:focus {
  border-color: #2aa7ab;
  background-color: #ffffff;
  outline: none;
}

/* Optionnel : changer le curseur au survol */
form input[type="file"]:hover {
  background-color: #eaf2f7;
}

.file-input {
  height: auto !important;
  cursor: pointer;
}

h1 {
  text-align: center;
}

.bons-container {
  margin: 0 auto;
  width: max-content;
  overflow: auto;
  max-height: 1000px;
}

.bons-container a {
  color: #249e9d;
  font-weight: bold;
}
.lien-ouvrir-bon{
  color: #249e9d;
  font-weight: bold;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  flex-wrap: wrap;
}

.pagination a {
  text-decoration: none;
  color: #2aa7ab;
  padding: 5px 16px;
  margin: 5px;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
  border: 1px solid #2aa7ab;
}

.pagination a:hover {
  background-color: #f1f1f1;
  color: #333;
}

.pagination a.active {
  background-color: #2aa7ab;
  color: white;
  font-weight: bold;
}

.pagination a:disabled {
  color: #aaa;
  cursor: not-allowed;
}

.pagination a:first-child,
.pagination a:last-child {
  font-weight: bold;
}

.message-success {
  text-align: center;
}
.or-separator {
  text-align: center;
  margin: 20px 0;
  font-size: 18px;
  color: #ed6d05;
  font-weight: bold;
}

.fieldset-stats {
  margin-top: 30px;
  margin-bottom: 50px !important;
}

.fieldset-stats legend {
  margin-bottom: 20px;
}

/*DATES STAT*/
.date-stats-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.date-stats-wrapper > div {
  flex: 1;
  min-width: 200px;
}

/* .date-stats-wrapper label {
  display: block;
  margin-bottom: 8px;
  color: #334271;
  font-weight: 500;
} */

.date-stats-wrapper input[type="date"] {
  height: 40px;
  padding: 0 15px;
  border: 2px solid #d6dadf;
  border-radius: 5px;
  background-color: #f4f7fb;
  color: #334271;
  font-size: 1rem;
  box-sizing: border-box;
  width: 100%;
  transition: border-color 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.date-stats-wrapper input[type="date"]:focus {
  border-color: #2aa7ab;
  background-color: #ffffff;
  box-shadow: 0 0 8px rgba(42, 167, 171, 0.4);
  outline: none;
}

.campagne-stats-wrapper {
  margin-bottom: 20px;
}

.campagne-stats-wrapper label {
  display: block;
  margin: 0;
}

.campagne-stats-wrapper select {
  display: block;
  margin: 0;
  min-width: 450px;
}

.fieldset-stats .buttons-wrapper {
  display: flex;
  justify-content: end;
}

.table-seances-stats {
  max-width: 1200px;
}

.libelle-campaign {
  font-weight: bold;
  font-size: 16px;
}

.seances-effectuees {
  font-weight: bold;
  color: #ed6d05;
  font-size: 16px;
}

.seances-restantes {
  font-weight: bold;
  color: #2aa7ab;
  font-size: 16px;
}
