@tailwind base;
@tailwind components;
@tailwind utilities;

/* Définir le thème par défaut en sombre */
:root {
  --background-color: black;
  --text-color: white;
}

body {
  background-color: var(--background-color) !important;
  color: var(--text-color) !important;
}
