/* Basic loading styles and root element styling */
#root {
  min-height: 100vh;
}

/* Loading spinner for initial page load */
.loading-initial {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #2E8B57 0%, #1e5631 100%);
  color: white;
}

/* Basic body styling */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  color: #2c3e50;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus outline improvements for accessibility */
*:focus {
  outline: 2px solid #2E8B57;
  outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #2E8B57;
  color: white;
  padding: 8px;
  z-index: 10000;
  text-decoration: none;
  border-radius: 4px;
}

.skip-link:focus {
  top: 6px;
}
