/* Base Tailwind + minimal tweaks */
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";

/* Reset minimal et améliorations */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-feature-settings: "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Focus visible propre */
:focus-visible {
  outline: 2px solid rgb(59 130 246 / 0.6);
  outline-offset: 2px;
}

/* Transitions globales */
button, .menu-item, .right-menu-item {
  transition: background-color 0.2s ease, transform 0.12s ease, box-shadow 0.2s ease;
}

/* Scrollbar fine */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: rgb(30 41 59 / 0.3);
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb {
  background: rgb(71 85 105 / 0.8);
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(71 85 105);
}