:root {
  --primary-color: #2a3f54;
  --secondary-color: #28a745;
  --accent-color: #ff6b6b;
  --text-dark: #212529;
  --text-light: #6c757d;
  --gradient-blue: linear-gradient(135deg, #2a3f54 0%, #3a506b 100%);
}

body {
  font-family: "Iran Sans", sans-serif;
  line-height: 1.6;
}
/* شخصی‌سازی اسکرول بار */
::-webkit-scrollbar {
  width: 10px !important;
  height: 10px !important;
}

::-webkit-scrollbar-track {
  background: #f1f1f1 !important;
  border-radius: 10px !important;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color) !important;
  border-radius: 10px !important;
  background-image: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--secondary-color)
  ) !important;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color) !important;
}
/* برای فایرفاکس */
html {
  scrollbar-width: thin !important;
  scrollbar-color: var(--primary-color) #f1f1f1 !important;
}
