@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700&display=swap');

* {
  font-family: 'Vazirmatn', system-ui, sans-serif;
}

body {
  background-color: #f8fafc;
}

/* کارت‌ها */
.expense-card {
  transition: all 0.3s ease;
}

.expense-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.balance-card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
}

/* وضعیت‌های فعال و غیرفعال */
.section {
  display: none;
}

.section-active {
  display: block;
}

.nav-active {
  color: #10b981 !important;
}

/* سایر استایل‌ها */
.amount-positive { color: #10b981; }
.amount-negative { color: #ef4444; }