/* public/style.css */
body {
  margin: 0;
  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;
  background-color: #f4f7fc; /* Açık modern bir arka plan rengi */
  color: #333; /* Genel metin rengi */
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

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

#root {
  /* React uygulamasının tam ekranı kaplaması için gerekebilir */
  /* display: flex; */ /* Bu, App.js'deki düzene göre ayarlanacak */
  /* min-height: 100vh; */
} 