/* Bootstrap styles — extracted from index.html so the CSP can drop
   'unsafe-inline' from the style-src directive. Loaded before any
   React-managed CSS to provide the baseline reset and body font. */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f4f4f4;
  color: #211d1d;
}

#root {
  min-height: 100vh;
}
