/* 1. FONDATIONS & VARIABLES
   Configuration globale, Reset, Scrollbars
*/

*, *::before, *::after {
  box-sizing: border-box;
  /* Optimisation Firefox pour les barres de défilement sur Windows 8.1 */
  scrollbar-width: thin; 
  scrollbar-color: #b0b0b0 #f0f2f5;
}

/* Webkit (Chrome/Edge) fallback pour les scrollbars */
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
*::-webkit-scrollbar-track {
  background: #f0f2f5;
}
*::-webkit-scrollbar-thumb {
  background-color: #b0b0b0;
  border-radius: 4px;
  border: 2px solid #f0f2f5;
}

html {
  font-size: 16px;
  /* Amélioration du lissage des polices sur Windows */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
  line-height: 1.4;
  color: #333333;
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background-color: #f0f2f5;
}

/* Utilitaires globaux */
.hidden { display: none; }