@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Muli:wght@300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat+Brush&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mali:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap");
@font-face {
  font-family: "Housepaint";
  src: url("../fonts/Housepaint-4a3e211903b2690a315d987c7fa445f5.otf") format("opentype");
}
#details-alerte .card-header {
  background-color: rgb(78, 29, 79); /* ls-prune */
  color: rgb(255, 255, 255); /* blanc */
}

#details-alerte .card-title {
  color: rgb(255, 255, 255); /* blanc */
}

.editor {
  height: 200px; /* ou toute autre valeur fixe */
}

.col-editor {
  min-height: 100%;
}

.assignation-toolbar {
  display: flex;
  align-items: center;
}

.assignation-toolbar .btn-assignation {
  flex-shrink: 0;
}

.assignation-toolbar select,
.assignation-toolbar .choices {
  flex-grow: 1;
  min-width: 200px;
}

.assignation-toolbar .btn-assignation {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.assignation-toolbar .choices__inner {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Styles pour la barre de notification */
.notification-bar {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px; /* Largeur des notifications */
  z-index: 9000; /* Assurez-vous que la barre de notification chevauche le reste de la page */
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Alignement à droite */
  pointer-events: none; /* Empêche les notifications de bloquer les clics */
}

/* Exemple de style pour une notification individuelle */
.notification {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin: 10px 10px 0 10px;
  background-color: #444;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0; /* Initialement invisible */
  transform: translateX(20px); /* Position initiale pour l'animation */
  animation: fadeIn 0.5s forwards, fadeOut 0.5s 4.5s forwards; /* Animation d'apparition et de disparition */
  pointer-events: auto; /* Réactive les clics sur les notifications */
}

/* Définir les animations */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateX(20px);
  }
}
/* Styles colorés pour différents types de notifications */
.notification-success {
  background-color: #28a745;
}

.notification-error {
  background-color: #dc3545;
}

.notification-warning {
  background-color: #ffc107;
}

.notification-info {
  background-color: #17a2b8;
}

/* Styles pour les icônes */
.notification-icon {
  margin-right: 10px;
  font-size: 20px;
}

html,
body {
  height: 100%;
}

body {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

footer {
  color: #cdcdcd;
  font-size: 0.9rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Cocon, Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: rgb(0, 0, 0);
}

.custom-file-label::after {
  content: "Parcourir";
}

.bouton-succes {
  background-color: rgb(149, 193, 31) !important;
  border-color: rgb(149, 193, 31) !important;
  color: rgb(255, 255, 255) !important;
}

.bg-primary, .btn-primary {
  background-color: rgb(10, 66, 117) !important;
}

.choices {
  width: 100% !important;
}

.choices__list--dropdown .choices__item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select2-container--default .select2-selection--single, .select2-selection .select2-selection--single {
  border: 1px solid #d2d6de;
  border-radius: 0;
  padding: 6px 12px;
  height: 34px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 10px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin-top: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 28px;
  right: 3px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: rgb(41, 111, 82);
  border-color: rgb(41, 111, 82);
}

.col-form-label {
  font-weight: 700;
}

.filter-input {
  display: block;
  margin-top: 0.5rem;
  width: 90%;
  font-size: 0.8rem;
  background-color: inherit;
  border-color: lightgray;
  border-width: thin;
  padding: 0.2rem;
  border-radius: 5px;
}

/*# sourceMappingURL=app.output.css.map */
