/* Global CSS pour Opcom Advisor */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #EAEDEF;
}

/* Classe pour les états de chargement */
.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Utilitaires */
.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

/* Styles pour les erreurs */
.error-message {
  color: #ea302d;
  font-size: 14px;
  margin-top: 8px;
}

/* Styles pour les notifications */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 12px 20px;
  border-radius: 4px;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.notification.success {
  background-color: #46a610;
  color: white;
}

.notification.error {
  background-color: #ea302d;
  color: white;
}

.oa-simple-kpi-tooltip,
.oa-list-simple-kpi-tooltip {
    background-color: #666666 !important;
}
    
.notification.info {
  background-color: #0b96cc;
  color: white;
}

.v-autocomplete .v-theme--darkAdeo .v-autocomplete__selection {
    -webkit-margin-end: 0 !important;
    margin-inline-end: 0 !important;
    color: #FAFAFA !important;
}