/* Consolidated body class */
body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color, #fafafa);
  color: var(--rich-black, #222);
  font-family: var(--font-family, "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif);
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
}