/* Global styles start */
:root {
    --flow-space: 1.5rem; /* Adjusted example size */
  }
  
  body {
    background: #f5f5f5; /* Example light color */
    color: #333333; /* Example dark shade */
    line-height: 1.5;
    font-size: 1rem; /* Adjusted example size */
    font-family: Arial, sans-serif; /* Example base font */
  }
  
  /*a:not([class]) {
    color: currentColor;
    text-decoration-color: #007BFF
  }
  
  :focus {
    outline: 2px dashed #007BFF;
    outline-offset: 0.25rem;
  }*/
  
  main:focus {
    outline: none;
  }
  
  h1,
  h2,
  h3,
  h4 {
    font-weight: 900;
    font-family: 'Helvetica Neue', sans-serif; /* Example sans-serif font */
    line-height: 1.2; /* Example flat leading */
  }
  
  /* High contrast selection for accessibility */
  ::selection {
    color: #ffffff; /* Example light color */
    background: rgba(51, 51, 51, 0.99); /* Example dark shade with solid RGBA */
  }
  
  /* Scrollbar styles */
  ::-webkit-scrollbar {
    height: 1rem;
  }
  
  ::-webkit-scrollbar-track {
    background-color: transparent;
    border: 1px solid #555555; /* Example dark glare color */
    border-radius: 0.25rem;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #333333; /* Example dark color */
    border-radius: 0.25rem;
  }
  
/* Universal box-sizing reset to avoid unexpected widths */
html, body {
  height: 100%;
  margin: 0;               /* Remove default margin */
  padding: 0;              /* Remove default padding */
  box-sizing: border-box;   /* Ensure padding doesn't expand element width */
  display: flex;
  flex-direction: column;
}

/* Ensure content takes up the available space */
body {
  flex: 1;
}

/* Ensure the main content area grows to fill available space */
main {
  flex: 1;
}

*, *::before, *::after {
  box-sizing: inherit;
}
