/* استایل‌های پایه برای فونت و جهت متن */
body {
  font-family: 'Vazirmatn', sans-serif;
  background-color: #f8fafc;
  color: #1a202c;
  direction: rtl;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.shamsi-font {
  font-family: 'Vazirmatn', sans-serif;
}

/* انیمیشن‌های ساده */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.4s ease-out forwards;
}
