/* فایل main.css برای استایل‌های سفارشی */
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazir.woff2') format('woff2');
}

body {
  font-family: 'Vazirmatn', sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
}

a {
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: underline;
}

input, textarea, select, button {
  font-family: inherit;
  border: 1px solid #d1d5db;
}

button {
  cursor: pointer;
}

.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #22c55e;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 9999;
}
