@import "tailwindcss";
@plugin "daisyui/theme" {
  name: "night";
  default: false;
  prefersdark: false;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Classe pour les skip links et éléments cachés visuellement mais accessibles aux lecteurs d'écran */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Animation d'ouverture de la modal */
.modal {
  transition: opacity 0.3s ease-in-out;
}

.modal-open {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

