.order-item {
    border: 1px solid #ddd;
    padding: 15px;
    margin: 15px 0;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* theme.css - ملف التنسيقات الموحد لمطبعة رودينا */
:root {
    --primary-color: #cc0000; /* اللون الأحمر الأساسي */
    --bg-color: #f2f2f7;      /* لون الخلفية الرمادي الفاتح */
}

body { font-family: sans-serif; background: var(--bg-color); margin: 0; padding-bottom: 30px; }

/* الهيدر */
.app-header { background: white; padding: 20px; text-align: center; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.logo-app { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 10px; }

/* الأزرار */
.btn-submit { background: var(--primary-color); color: white; width: 100%; padding: 15px; border: none; border-radius: 10px; font-weight: bold; cursor: pointer; }

/* البطاقات والحقول */
.card-app { background: #fff; margin: 15px; padding: 20px; border-radius: 15px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
input, select { width: 100%; padding: 12px; margin: 10px 0; border: 1px solid #ccc; border-radius: 10px; box-sizing: border-box; }

/* ألوان التطبيق الثابتة */
:root {
    --primary-color: #cc0000;
    --bg-color: #f2f2f7;
    --text-color: #333;
}

body { font-family: sans-serif; background: var(--bg-color); }

.app-header { background: white; padding: 20px; text-align: center; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }

.btn-confirm { 
    background: var(--primary-color); 
    color: white; 
    width: 100%; 
    padding: 15px; 
    border-radius: 10px; 
    border: none; 
}