/* Add custom CSS styles below */ 
#app > div.container > div > div > div.flex.min-h-screen {
    min-height: 50vh !important;
}

/* حل مشكلة الخط الممتد في السعر القديم */
.before-price.line-through {
    text-decoration: line-through !important; /* تفعيل الشطب العادي للنص */
    position: relative;
    display: inline-block;
}

/* إخفاء أي خطوط إضافية مبرمجة يدوياً قد تسبب المشكلة */
.before-price.line-through::after, 
.before-price.line-through::before {
    display: none !important;
    content: none !important;
}