* { font-family: 'Vazirmatn', sans-serif; }
body { margin: 0; }

@keyframes toast {
  0% { transform: translate(-50%, -20px); opacity: 0; }
  15%, 85% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, -20px); opacity: 0; }
}
.animate-toast { animation: toast 2.5s ease forwards; }

@keyframes slideup {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.animate-slideup { animation: slideup .6s ease both; }

.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }

/* scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: #d4d4d8; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a1a1aa; }

input[type="range"] { height: 6px; border-radius: 3px; }