* {
  box-sizing: border-box;
}

.light-mode {
  display: block;
}

.dark-mode {
  display: none;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

html {
  font-size: 14px;
}

body {
  font-family: Arial, sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* Ensure proper font loading */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");

/* Fix any potential layout issues */
img {
  max-width: 100%;
  height: auto;
}

/* Smooth transitions */
* {
  transition: all 0.2s ease-in-out;
}

@media all and (prefers-color-scheme: dark) {
  :root {
    background-color: #202124;
    color: #e8eaed;
  }

  body {
    background-color: #202124;
    color: #e8eaed;
  }

  .light-mode {
    display: none;
  }

  .dark-mode {
    display: block;
  }
}
