@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: #111827; /* رنگ پس‌زمینه تیره */
    color: #d1d5db; /* رنگ متن روشن */
}
.file-item {
    transition: all 0.3s ease;
    transform-origin: top;
}
.file-item.removing {
    transform: scale(0);
    opacity: 0;
}
.drop-zone-active {
    border-color: #3b82f6; /* آبی */
    background-color: #1f2937; /* خاکستری تیره‌تر */
}
.progress-bar {
    transition: width 0.3s ease;
}
/* نوار اسکرول سفارشی */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1f2937; }
::-webkit-scrollbar-thumb { background: #4b5563; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #6b7280; }

/* مخفی کردن دکمه‌های افزایش/کاهش ورودی عددی */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type='number'] {
    -moz-appearance: textfield; /* برای فایرفاکس */
}

