diff --git a/assets/admin/components/appointments/ServiceSlotPicker.tsx b/assets/admin/components/appointments/ServiceSlotPicker.tsx
index 3c840665..fd059c00 100644
--- a/assets/admin/components/appointments/ServiceSlotPicker.tsx
+++ b/assets/admin/components/appointments/ServiceSlotPicker.tsx
@@ -144,36 +144,41 @@ export default function ServiceSlotPicker({
{selected.map(s => (
-
+
{s.section}
{' ← '}{s.name}
-
- {editableDuration ? (
-
- setDuration(s.uuid, Number(v) || 0)}
- maxDigits={3}
- placeholder="دقیقه"
- />
- دقیقه
-
- ) : (
- {s.duration} دقیقه
- )}
-
-
+ {editableDuration ? (
+
+ setDuration(s.uuid, Number(v) || 0)}
+ maxDigits={3}
+ style={{ width: 34, border: 'none', outline: 'none', background: 'transparent', textAlign: 'center', fontFamily: 'inherit', fontSize: 13, color: 'var(--text)' }}
+ />
+ دقیقه
+
+ ) : (
+ {s.duration} دقیقه
+ )}
+
))}