@keyframes slideOutRight {
  to {
    opacity: 0;
  }
}
.slide-out-right {
  animation: slideOutRight 0.3s forwards;
}
body {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(17px);
}
#toast-container .toast-success {
  background-color: #5cb85c;
  /* Couleur de votre choix */
}
#toast-container .toast-error {
  background-color: #d9534f;
  /* Couleur de votre choix */
}
#toast-container .toast-info {
  background-color: #5bc0de;
  /* Couleur de votre choix */
}
#toast-container .toast-warning {
  background-color: #f0ad4e;
  /* Couleur de votre choix */
}
#toast-container .toast {
  opacity: 1;
  /* Enlever la transparence */
}
.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 90px);
  background-color: rgba(0, 0, 0, 0.1);
}
.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
