/* styles/globals.css */
:root {
  /* Palette bleue (comme dans votre code PHP) */
  --primary-blue: #4361ee;
  --primary-dark: #3a56d4;
  --primary-light: #4cc9f0;
  
  /* Couleurs d'accent */
  --accent-purple: #7209b7;
  --accent-pink: #f72585;
  
  /* Neutres */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #6c757d;
  --black: #212529;
  
  /* États */
  --success: #4bb543;
  --warning: #ffcc00;
  --error: #e63946;
  --info: #4361ee;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--light-gray);
}