/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */


.custom-tooltip {
  position: absolute;
  padding: 5px 10px;
  background: black;
  color: white;
  border-radius: 4px;
  font-size: 0.8em;
  pointer-events: none;
  z-index: 1000;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.custom-tooltip.show {
  opacity: 1;
}

.flight_autorisation_OK {
  background-color: #d4edda !important;   /* vert clair */
}

.flight_autorisation_NO {
  background-color: #f8d7da !important;   /* rouge clair */
}

.flight_autorisation_Unknown {
  background-color: #e2e3e5 !important;  /* gris clair */
}

