@charset "UTF-8";
.accueil {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 400px auto;
  gap: 1rem;
  align-items: center;
  justify-items: center;
  padding: 1rem;
}
.accueil h1 {
  font-size: 2rem;
  text-align: center;
  display: grid;
  grid-column: 1/3;
  grid-row: 1/2;
}
.accueil h1 img {
  width: 15%;
}
.accueil .clients-accueil {
  display: grid;
  grid-column: 1/2;
  gap: 1rem;
  grid-row: 2/-1;
  align-self: start;
  align-items: center; /* Cette propriété est inutile ici car vous utilisez display: grid et non flex */
  /* Cette propriété est inutile ici pour la même raison que ci-dessus */
  padding: 5rem;
  row-gap: 0.5rem; /* Ajustez cette valeur pour réduire l'espace entre les lignes */
  width: 70%;
  max-height: 10000vh;
  min-height: 50vh;
  border-radius: 5px;
  background-color: rgb(171, 28, 105);
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
}
.accueil .clients-accueil .client-accueil {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 1rem;
  background-color: white;
  padding: 3% 1%;
  border-radius: 5px;
  border: 2px solid rgb(33, 36, 78);
  box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}
.accueil .clients-accueil .client-accueil:hover {
  background-color: rgb(204, 210, 226);
}
.accueil .clients-accueil .client-accueil:hover p {
  color: #212121;
}
.accueil .clients-accueil .client-accueil p {
  color: #acacac;
  transition: all 0.3s;
}
.accueil .clients-accueil a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  margin-bottom: 5px;
}
.accueil .clients-accueil a:hover {
  color: rgb(0, 52, 112);
}
.accueil .clients-accueil .btn-accueil-supprimer {
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: none;
  background-color: rgba(255, 255, 255, 0);
}
.accueil .form-ajout-client {
  display: grid;
  grid-column: 2/3;
  grid-row: 2/3;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  width: 100%;
  height: 400px;
  border: 1px solid black;
  border-radius: 5px;
  background-color: rgb(0, 52, 112);
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}
.accueil .form-ajout-client label {
  justify-self: end; /* Aligner les labels à la fin de leur cellule de grille */
  padding-right: 0.5rem; /* Espacement entre le label et l'input */
}
.accueil .form-ajout-client input {
  width: 100%; /* Les inputs doivent prendre toute la largeur disponible */
  padding: 0.5rem; /* Un peu de padding à l'intérieur des inputs */
  margin: 0; /* Retirer les marges par défaut si nécessaire */
}
.accueil .form-ajout-client .submit-accueil-clients {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: 50px;
  border: 1px solid rgb(171, 28, 105);
  background-color: rgb(171, 28, 105);
  color: white;
  padding: 0 2%;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accueil .form-ajout-client .submit-accueil-clients:hover {
  color: rgb(0, 52, 112);
  border: 1px solid rgb(0, 52, 112);
  background-color: white;
}
.accueil .recent-clients {
  display: grid;
  grid-column: 2/3;
  grid-row: 2/3;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  width: 50%;
  height: 50%;
  border: 1px solid rgba(209, 120, 165, 0.7);
  border-radius: 5px;
  background-color: rgba(209, 120, 165, 0.7);
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  position: fixed; /* Changez la position à sticky */
  top: 230; /* Ajuste selon la position souhaitée */
  right: 60; /* Aligner à droite */
}
.accueil .recent-clients a {
  text-decoration: none;
  color: white;
}
.accueil .recent-clients a:hover {
  color: rgb(0, 52, 112);
}

.logout {
  display: grid;
  grid-column: 1/2;
  grid-row: 1/2;
  font-size: 1.2rem;
  margin-right: 80%;
  margin-bottom: 10%;
  font-weight: bold;
  text-decoration: none;
  color: black;
}
.logout:hover {
  color: rgb(171, 28, 105);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 40%;
}
.modal-content h2 {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  color: rgb(0, 52, 112);
}
.modal-content span {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  margin-left: 90%;
  color: rgb(0, 52, 112);
  cursor: pointer;
}
.modal-content button {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  height: 50px;
  border: 1px solid rgb(171, 28, 105);
  background-color: rgb(171, 28, 105);
  color: white;
  padding: 0 2%;
  border-radius: 5px;
}
.modal-content button:hover {
  color: white;
  border: 1px solid rgb(0, 52, 112);
  background-color: rgb(0, 52, 112);
}

.Btn-logout {
  --black: #000000;
  --ch-black: #141414;
  --eer-black: #1b1b1b;
  --night-rider: #2e2e2e;
  --white: #ffffff;
  --af-white: #f3f3f3;
  --ch-white: #e1e1e1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: var(--af-white);
}

/* plus sign */
.sign-logout {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign-logout svg {
  width: 17px;
}

.sign-logout svg path {
  fill: var(--night-rider);
}

/* text */
.text-logout {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: var(--night-rider);
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: 0.3s;
}

/* hover effect on button width */
.Btn-logout:hover {
  width: 125px;
  border-radius: 5px;
  transition-duration: 0.3s;
}

.Btn-logout:hover .sign-logout {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 20px;
}

/* hover effect button's text */
.Btn-logout:hover .text-logout {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 10px;
}

/* button click effect*/
.Btn-logout:active {
  transform: translate(2px, 2px);
}

.clients {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 3fr;
  gap: 1rem;
  align-items: center;
  justify-items: center;
  padding: 1rem;
}
.clients .header {
  display: grid;
  grid-column: 1/3;
  width: 100%; /* Assurez-vous que la div prenne toute la largeur */
  grid-template-columns: 1fr 1fr 1fr; /* Divisez en trois colonnes égales */
  grid-template-rows: auto; /* La hauteur s'adapte au contenu */
  justify-content: stretch; /* Étirez les éléments pour remplir la grille */
  align-items: center; /* Centrez les éléments verticalement */
  text-align: center; /* Centrez le texte horizontalement pour le h1 */
}
.clients .header h1 {
  font-size: 2rem;
  grid-column: 1/-1; /* Étendez h1 sur toutes les colonnes */
}
.clients .header a {
  margin-left: 5%;
  text-decoration: none;
  color: black;
  font-size: 1.5rem;
  font-weight: bold;
  justify-self: start; /* Alignez le lien à gauche */
}
.clients .header a:hover {
  color: rgb(171, 28, 105);
}
.clients .categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  grid-column: 1/3;
  font-size: 1.2rem;
}
.clients .categories div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.clients .categories div input {
  width: 20px;
  height: 20px;
}
.clients .categories .submit-categories {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  width: auto;
  height: 50px;
  border: 1px solid rgb(171, 28, 105);
  background-color: rgb(171, 28, 105);
  color: white;
  padding: 0 2%;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tableau-client {
  width: 125%;
  margin-left: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tableau-client table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid black;
  text-align: center;
  grid-column: 1/3;
  padding: 5%;
}
.tableau-client table th {
  text-wrap: wrap;
  width: 70px;
  height: 85px;
  border: 2px solid black;
  text-align: center;
  background-color: rgb(171, 28, 106);
  color: white;
}
.tableau-client table tbody tr {
  border: 2px solid black;
}
.tableau-client table tbody td {
  border: 2px solid black;
  height: 50px;
  background-color: rgba(191, 139, 177, 0.3);
  font-weight: 500;
  font-size: 1.1rem;
}
.tableau-client table tbody td select {
  width: 100%;
  height: 100%;
  border: none;
  background-color: rgba(191, 139, 177, 0.3);
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  color: black;
}
.tableau-client table tbody .categories-name {
  background-color: rgba(153, 165, 197, 0.5);
}
.tableau-client table tbody .score-value {
  font-weight: bold;
  font-size: 1.2rem;
}
.tableau-client table tbody .global-score-value {
  font-weight: bold;
  font-size: 1.5rem;
}
.tableau-client input {
  width: 10%;
  height: 30px;
  border: 1px solid #003470;
  border-radius: 5px;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  padding: 0 2%;
  font-weight: bold;
  background-color: #003470;
  color: white;
  text-align: center;
}

.disabled-cell {
  background-color: rgba(131, 131, 131, 0.658) !important; /* Couleur de fond pour griser la case */
} /* Couleur de fond pour griser la case */
#graphs-container {
  display: flex;
  grid-column: 1/3;
  margin-top: 2%;
  gap: 60px;
}
#graphs-container .graph-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#graphs-container .graph-container .graph-title {
  font-size: 1.5rem;
  font-weight: bold;
}

textarea {
  width: 450px;
  min-height: 250px;
  border: 1px solid #003470;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  padding: 2%;
  font-weight: bold;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  resize: none;
}

.form-commentaire {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

.graph-canvas {
  display: block;
  margin: auto;
}

.btn {
  width: fit-content;
  height: 30px;
  border: 1px solid #003470;
  border-radius: 5px;
  margin: 10px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  padding: 0 2%;
  font-weight: bold;
  background-color: #003470;
  color: white;
  text-align: center;
}
.btn:hover {
  background-color: rgb(171, 28, 105);
}

#global-comment-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  align-items: center;
}
#global-comment-form #global-save-button {
  margin-top: 5%;
  grid-column: -1/1;
  padding: 1% 2%;
  border: 1px solid #003470;
  background-color: #003470;
  color: white;
  border-radius: 5px;
  font-size: 1.2rem;
}
#global-comment-form #global-save-button:hover {
  background-color: rgb(171, 28, 105);
}

#btn-creer-pdf {
  width: fit-content;
  height: 50px;
  border: 1px solid #003470;
  border-radius: 5px;
  margin-top: 50px;
  display: grid;
  grid-column: 1/3;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  padding: 0 2%;
  font-weight: bold;
  background-color: #003470;
  color: white;
  text-align: center;
}
#btn-creer-pdf:hover {
  background-color: rgb(171, 28, 105);
}

.date-modif {
  font-size: 1.2rem;
  font-weight: bold;
  color: #727272;
  margin-top: 20px;
}

.pdf-button-message-hidden {
  display: none;
  /* autres styles pour cacher le message */
}

.pdf-button-message-visible {
  display: block;
  /* autres styles pour montrer le message */
  position: absolute; /* ou une autre méthode de positionnement */
  /* positionnement spécifique, couleur, etc. */
}

/* Bouton retour */
.button {
  display: block;
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0;
  overflow: hidden;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  border: 0;
}

.button:before,
.button:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: 7px;
}

.button:before {
  border: 4px solid #797979;
  transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms, transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
}

.button:after {
  border: 4px solid rgb(171, 28, 106);
  fill: rgb(171, 28, 106);
  transform: scale(1.3);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
}

.button:hover:before,
.button:focus:before {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.button:hover:after,
.button:focus:after {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms, transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
}

.button-box {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.button-elem {
  display: block;
  width: 20px;
  height: 20px;
  margin: 17px 18px 0 18px;
  transform: rotate(180deg);
  fill: #797979;
}

.button-elem::after {
  fill: rgb(171, 28, 106);
}

.button:hover .button-box,
.button:focus .button-box {
  transition: 0.4s;
  transform: translateX(-56px);
}

#categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 1.2rem;
  margin: 10%;
}
#categories .categorie-container {
  gap: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  border: 2px solid rgb(212, 212, 212);
  padding: 1% 0;
}
#categories .categorie-container h2 {
  font-size: 21px;
  font-weight: bold;
  margin: 1% 5%;
  color: rgb(109, 45, 104);
  text-align: center;
}
#categories .categorie-container h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 1% 5%;
  color: rgb(109, 45, 104);
}
#categories .categorie-container ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 20px;
  margin: 0 2%;
}
#categories .categorie-container ul li {
  display: grid;
  align-items: center;
  justify-items: center;
  padding-left: 2%;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  border: 2px solid rgb(212, 212, 212);
  width: 90%;
  margin: auto;
  border-radius: 5px;
  height: auto;
  color: #21244E;
}
#categories .categorie-container ul li .texte-container {
  width: 200px;
  margin: 1% 0;
  gap: 10px;
  color: #21244E;
  font-size: 18px;
}
#categories .categorie-container ul li .texte-container span {
  margin-top: 10px;
  color: #ac2369;
}
#categories .categorie-container ul li .icone-container {
  background-color: #ffffff;
  border: 2px solid rgb(235, 235, 235);
  width: 60px;
  border-radius: 50%;
  margin-top: 3.5%;
}
#categories .categorie-container ul li .icone-container img {
  width: 55px;
  height: 60px;
  padding: 20%;
}
#categories .categorie-container p {
  font-size: 18px;
  font-weight: 100;
  margin: 2%;
  color: #21244e;
  line-height: 1.2;
}

.sous-categorie-item.full-width {
  display: flex !important;
  justify-content: center;
  align-items: center;
  grid-column: 1/-1;
}
.sous-categorie-item.full-width .icone-container {
  margin-bottom: 2%;
}

.connexion-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-image: url(../images/filigrane.png);
  background-position: 50%;
  background-color: #fbf9fa;
  background-size: cover;
  gap: 1rem;
}
.connexion-form p {
  font-size: 1.2rem;
  font-weight: bold;
}
.connexion-form p span {
  color: rgb(171, 28, 105);
  font-weight: bold;
  font-size: 1.5rem;
}
.connexion-form form {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: rgb(171, 28, 105);
  padding: 3%;
  border-radius: 5px;
  gap: 0;
  box-shadow: 0 2px 12px;
}
.connexion-form form label {
  margin-right: 50%;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 1rem;
}
.connexion-form form input {
  width: 300px;
  height: 40px;
  border: 1px solid rgb(119, 119, 119);
  border-radius: 5px;
  padding: 0 0.5rem;
  font-size: 1rem;
}
.connexion-form form .submit-connexion {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border: none;
  background-color: rgb(0, 52, 112);
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 1rem;
}
.connexion-form form .submit-connexion:hover {
  background-color: white;
  color: rgb(171, 28, 105);
}

.password-container {
  position: relative;
}

#togglePassword {
  position: absolute;
  right: 10px;
  top: 10px; /* Ajuste cette valeur pour aligner l'icône avec ton champ de mot de passe */
}

.plans-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin-top: 20px;
  padding: 0 50px;
  justify-items: center;
  align-items: start;
}
.plans-container div {
  gap: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  border: 2px solid rgb(212, 212, 212);
  padding: 1% 0;
}
.plans-container div h2 {
  font-size: 21px;
  font-weight: bold;
  margin: 1% 5%;
  color: rgb(109, 45, 104);
  text-align: center;
}
.plans-container div .sous-categories {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 20px;
  margin: 0 2%;
}
.plans-container div .sous-categories p {
  display: grid;
  align-items: center;
  justify-items: center;
  padding-left: 2%;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  width: 90%;
  margin: auto;
  border-radius: 5px;
  height: auto;
  color: #21244E;
}
.plans-container div .sous-categories p .texte-container {
  width: 200px;
  margin: 1% 0;
  gap: 10px;
  color: #21244E;
  font-size: 18px;
}
.plans-container div .sous-categories p .texte-container span {
  margin-top: 10px;
  color: #ac2369;
}
.plans-container div button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #f39c12;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.plans-container div button:hover {
  background-color: #e67e22;
}

.sous-categorie-item.full-width {
  display: flex !important;
  justify-content: center;
  align-items: center;
  grid-column: 1/-1;
}
.sous-categorie-item.full-width .icone-container {
  margin-bottom: 2%;
}

.client-api {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 0 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

/*# sourceMappingURL=style.css.map */
