.out {
  color: #cc1821;
}

.header-w {
  background-color: none; /* Changez cette couleur selon vos besoins */
  color: #e09393;
  padding: 10px;
  border-radius: 50px;
}
.header-w:hover {
  background-color: #020202;
  color: #fff;
}

.syntaxhighlighter {
  background-color: #2d2d2d; /* Couleur de fond personnalisée */
  border-radius: 8px;
  padding: 10px;
  font-family: 'Courier New', Courier, monospace; /* Police personnalisée */
  font-size: 0.9rem; /* Taille de police */
  margin: 10px 0;
}
/******************************Admin table***************************************************/
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@media (max-width: 480px) {
  table {
    width: 100%;
  }
  
}
.form-control {
  border: 1px solid #e0e6f7;
  border-radius: 4px;
  background-color: #ffffff;
  padding: 11px 15px 13px 15px;
  width: 100%;
  color: #a0abb8;
}
.form-control::-moz-placeholder {
  color: #a0abb8;
}
.form-control::placeholder {
  color: #a0abb8;
}
.form-group {
  position: relative;
}

/*icones et dropdown sur le sidebar*/
.menu-icon {
  position: relative;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.pagination button {
  background-color: #007bff; /* Couleur de fond du bouton */
  color: white; /* Couleur du texte (flèche) */
  border: none; /* Pas de bordure */
  padding: 10px 20px; /* Padding pour agrandir la zone cliquable */
  font-size: 16px; /* Taille de la flèche */
  border-radius: 4px; /* Arrondir les bords */
  margin: 0 5px; /* Espace entre les boutons */
  cursor: pointer; /* Curseur pointer pour indiquer qu'il s'agit d'un bouton cliquable */
  transition: background-color 0.3s ease; /* Animation de la couleur */
}

.pagination button:disabled {
  background-color: #ccc; /* Couleur de fond grisée pour les boutons désactivés */
  cursor: not-allowed; /* Curseur interdit pour les boutons désactivés */
}

.pagination button:hover:not(:disabled) {
  background-color: #0056b3; /* Couleur de fond au survol */
}

.pagination .arrow-left::before {
  content: '←'; /* Flèche gauche pour le bouton Précédent */
  font-weight: bold;
}

.pagination .arrow-right::before {
  content: '→'; /* Flèche droite pour le bouton Suivant */
  font-weight: bold;
}


/*icones et dropdown sur le sidebar*/
.menu-icon {
  position: relative;
}

.chat-options-menu {
  position: absolute;
  top: 20px;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.chat-options-menu .menu-item {
  padding: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  color: chocolate;
}

.chat-options-menu .menu-item:hover {
  background-color: #f0f0f0;
}

.menu-item svg {
  margin-right: 8px;
}

/******************************Login page***************************************************/
.login {
  background: url('/assets/img/bg2.jpg') no-repeat center center; 
  background-size: cover; /* L'image couvre tout l'espace disponible */
  font-family: tahoma;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.position-relative {
  position: absolute;
}

.password-toggle-icon {
  position: absolute;
  right: 10px;
  top: 30%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #bbb;
  transition: color 0.3s;
}

.password-toggle-icon:hover {
  color: #030303;
}

.login form {
  background-color: rgba(255, 255, 255, 0.1); /* Fond transparent avec une légère teinte */
  padding: 30px;
  border-radius: 15px; /* Bordures plus arrondies */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); /* Ombre plus prononcée */
  backdrop-filter: blur(10px); /* Effet de flou derrière le formulaire */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Bordure subtile */
  max-width: 400px;
  width: 100%;
  color: #fff; /* Couleur du texte */
}

.login form input[type="email"],
.login form input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3); /* Bordure subtile pour les champs */
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1); /* Fond transparent pour les champs */
  color: #fff; /* Couleur du texte */
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.login form input[type="email"]:focus,
.login form input[type="password"]:focus {
  border-color: rgba(255, 255, 255, 0.6); /* Bordure plus visible au focus */
}

.login form button {
  width: 100%;
  padding: 12px;
  background-color: #007bff; /* Couleur de fond du bouton */
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login form button:hover {
  background-color: #0056b3; /* Changement de couleur au survol */
}

.login form .separator {
  text-align: center;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.7);
}

.login form .social-login {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.login form .social-login button {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 10px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login form .social-login button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.login form h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
}

.login .form-control {
  background-color: #444;
  color: #fff;
  border: 1px solid #555;
  border-radius: 5px;
  padding: 12px 20px;
  font-size: 16px;
}

.login .form-control::placeholder {
  color: #bbb;
}

.login .form-control:focus {
  background-color: #555;
  border-color: #777;
  outline: none;
  box-shadow: none;
}

.login .loginbtn, .google {
  background-color: #007bff;
  color: white;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  margin-top: 15px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}

.login .loginbtn:hover, .google:hover {
  background-color: #0056b3;
}

.google {
  background-color: #f5f5f5;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google img {
  width: 20px;
  margin-right: 10px;
}

.google .textbtn {
  color: #333;
}

.logoG {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}

.text-light {
  color: #ccc;
}

.form-text {
  font-size: 12px;
  color: #f5f5f5;
}

.form-text a {
  color: #007bff;
  text-decoration: none;
}

.form-text a:hover {
  text-decoration: underline;
}

.login p {
  color: #fff;
  font-size: 14px;
  margin-top: 5px;
}

/* Responsive styles */
@media (max-width: 768px) {
  form {
    padding: 20px;
    max-width: 90%;
  }

  form h4 {
    font-size: 20px;
  }

  .form-control {
    font-size: 14px;
    padding: 10px;
  }

  .loginbtn, .google {
    font-size: 14px;
    padding: 10px;
  }

  .google img {
    width: 18px;
  }
}

@media (max-width: 576px) {
  form {
    padding: 15px;
    max-width: 95%;
  }

  form h4 {
    font-size: 18px;
  }

  .form-control {
    font-size: 14px;
    padding: 8px;
  }

  .loginbtn, .google {
    font-size: 14px;
    padding: 10px;
  }

  .google img {
    width: 16px;
  }
}



/******************************Dashboard userdashboard***************************************************/
.dashboard-container-global {
  /*background: url('/assets/img/dall.webp');*/
  display: flex;
  overflow-y: auto;
  flex-direction: column;
  height: 100vh; /* Assure que la hauteur du conteneur prend tout l'écran */
  padding: 20px;
  width: 90%;
}



/******************************Profil page***************************************************/

.profile-container {
  width: 90%;
  margin: 30px;
  margin-left: 5%;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow-y: auto;  /* Ajoute un scrollbar vertical si le contenu dépasse */

}

.profile-container h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

.profile-container .profile-form {
  display: flex;
  width: 80%;
  flex-direction: column;
}

.profile-container .form-group {
  margin-bottom: 15px;
}

.profile-container .form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #555;
}

.profile-container .profile-image-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.profile-container .profile-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.profile-container input[type="file"] {
  padding: 10px 0;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.profile-container textarea {
  resize: none;
}

.profile-container button {
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.profile-container button:hover {
  background-color: #0056b3;
}

.profile-container button:disabled {
  background-color: #ccc;
}

@media (max-width: 768px) {
  .profile-container {
    width: 100%;
    padding: 10px;
  }

  .profile-image {
    width: 60px;
    height: 60px;
  }
}

/*******************************QUICKS QUESTIONS**************************************************/

.quickmessage-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.quickmessage-container h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
}

.quickmessage-category {
  margin-bottom: 40px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.quickmessage-category h2 {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 20px;
}

.quickmessage-card {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 70px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.quickmessage-card p {
  font-size: 1.1rem;
  color: #333;
}

.quickmessage-card:hover {
  background-color: #eef;
  box-shadow: 4px 4px 15px rgba(2, 2, 2, 0.2);
}

@media (min-width: 768px) {
  .quickmessage-category {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
  }

  .quickmessage-card {
      width: 48%;
  }
}

@media (min-width: 1024px) {
  .quickmessage-card {
      width: 30%;
  }
}


/**********************************************************************************************************/


.password-container {
  width: 30%;
  height: 50%;
  margin: 30px;
  margin-left: 5%;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow-y: auto;  /* Ajoute un scrollbar vertical si le contenu dépasse */

}

.password-container h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}
.password-container input {
  border-radius: 20%;
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.password-container .profile-form {
  display: flex;
  width: 80%;
  flex-direction: column;
}

.password-container .form-group {
  margin-bottom: 15px;
}

.password-container .form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #555;
}


.profile-container button {
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.profile-container button:hover {
  background-color: #0056b3;
}

.profile-container button:disabled {
  background-color: #ccc;
}

@media (max-width: 768px) {
  .password-container {
    width: 100%;
    padding: 10px;
  }
}