* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -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;
  overflow-x: hidden;
}

#root {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Desktop View - Background and spacing */
@media (min-width: 768px) {
  body {
    background: #f5f5f5;
    padding: 0;
  }

  #root {
    background: transparent;
    width: 100%;
  }
}

/* Mobile-first responsive design */
@media (max-width: 768px) {
  body {
    font-size: 14px;
    background: #f5f5f5;
  }
}


