/* styles.css - Minimal Global Styles */

/* Apply box-sizing globally */
* {
  box-sizing: border-box;
}

/* Global body styles - Keep these */
body {
  font-family: 'Inter', sans-serif; /* Base font */
  background: linear-gradient(135deg, #E5E7EB 0%, #CBD5E1 100%); /* Base background */
  color: #1F2937; /* Base text color */
  overflow-x: hidden; /* Prevent horizontal scroll */
  min-height: 100vh;
  -webkit-font-smoothing: antialiased; /* Smoother font rendering */
  -moz-osx-font-smoothing: grayscale;
}

/* Add any other *truly global* styles here if needed, */
/* but avoid anything related to layout or specific components */
/* that might be styled differently on different pages. */

