/* ============================================
   الجزء ده هو نفس الـ CSS الأصلي اللي كان في ملفك
   2-index.html بالظبط، من غير أي تغيير في أي قاعدة
   ============================================ */

:root {
    --primary-color: #000066;
    --primary-hover: #000044;
    --accent-orange: #f29100;
    --background: #0a0a23;
    --card-bg: #ffffff;
    --text-main: #000066;
    --text-muted: #475569;
    --border: #cbd5e1;
    --alert-bg: #fef2f2;
    --alert-border: #ef4444;
    --alert-text: #991b1b;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-main);
    margin: 0;
    padding: 30px 20px;
    background-color: var(--background);
    background-image: 
        radial-gradient(rgba(242, 145, 0, 0.15) 1px, transparent 0),
        linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px, 20px 20px, 20px 20px;
    background-position: 0 0, 10px 10px, 10px 10px;
}

.dashboard-card {
    background: var(--card-bg);
    max-width: 1150px; 
    margin: 0 auto;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

.header-section {
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.brand-info { float: right; }
.brand-logo { max-width: 160px; height: auto; vertical-align: middle; margin-left: 20px; }
.header-text { display: inline-block; vertical-align: middle; border-right: 3px solid var(--accent-orange); padding-right: 15px; }
.header-text h1 { font-size: 26px; margin: 0 0 5px 0; color: var(--primary-color); font-weight: 800; }
.header-text p { font-size: 14px; margin: 0; color: var(--text-muted); }

.live-clock-container {
    float: left; text-align: left; font-family: 'Courier New', Courier, monospace;
    background: #f1f5f9; padding: 10px 15px; border-radius: 10px;
    border: 1px solid var(--border); color: var(--primary-color); font-weight: bold;
}
.live-clock-container #clock { font-size: 18px; letter-spacing: 1px; display: block; }
.live-clock-container #date { font-size: 11px; color: var(--text-muted); font-family: 'Segoe UI', sans-serif; }

.clearfix { clear: both; }
.form-row { margin-bottom: 10px; }
.form-group { box-sizing: border-box; float: right; padding-left: 15px; margin-bottom: 20px; }
.w-33 { width: 33.33%; } .w-50 { width: 50%; } .w-100 { width: 100%; }

label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 14px; color: var(--primary-color); }
input, select, textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px;
    box-sizing: border-box; font-size: 15px; background-color: #f8fafc; color: #0f172a; transition: all 0.2s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(0, 0, 102, 0.15); background-color: #fff; }
textarea { resize: none; height: 120px; }

.outsourcing-box {
    background: #fff8f0; padding: 25px; border-radius: 12px; border: 2px dashed var(--accent-orange); margin: 25px 0; clear: both; box-shadow: 0 4px 12px rgba(242, 145, 0, 0.05);
}
.toggle-container { display: flex; align-items: center; gap: 15px; cursor: pointer; user-select: none; }
.switch { position: relative; display: inline-block; width: 55px; height: 28px; flex-shrink: 0; }
.switch input {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #cbd5e1; transition: .3s; border-radius: 34px; }
.slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 4px; bottom: 4px; background-color: white; transition: .3s; border-radius: 50%; box-shadow: 0 2px 4px rgba(0,0,0,0.2); }
input:checked + .slider { background-color: var(--accent-orange); }
input:checked + .slider:before { transform: translateX(-27px); }
.switch-text-block h4 { margin: 0 0 3px 0; font-size: 15px; color: #7c2d12; font-weight: 700; }
.switch-text-block p { margin: 0; font-size: 12px; color: #b45309; }

.supplier-fields { display: none; margin-top: 25px; border-top: 1px dashed rgba(242, 145, 0, 0.3); padding-top: 20px; }

.notice-bar { background-color: var(--alert-bg); border: 1px solid #fca5a5; border-right: 5px solid var(--alert-border); padding: 16px 20px; border-radius: 8px; margin: 25px 0; clear: both; }
.notice-bar p { margin: 0; font-size: 15px; color: var(--alert-text); font-weight: 700; line-height: 1.6; }

.actions-section { border-top: 1px solid #e2e8f0; padding-top: 25px; text-align: left; clear: both; }
.submit-btn { background-color: var(--primary-color); color: white; padding: 14px 45px; border: none; border-radius: 8px; cursor: pointer; font-size: 16px; font-weight: bold; box-shadow: 0 4px 12px rgba(0, 0, 102, 0.2); transition: all 0.2s ease; }
.submit-btn:hover { background-color: var(--primary-hover); transform: translateY(-1px); }
.submit-btn:disabled { background-color: #cbd5e1; cursor: not-allowed; }

@media (max-width: 768px) {
    .w-33, .w-50, .w-100 { width: 100%; padding-left: 0; }
    .brand-info, .live-clock-container { float: none; text-align: center; width: 100%; margin-bottom: 15px; }
    .header-text { border-right: none; border-top: 2px solid var(--accent-orange); padding-top: 10px; margin-top: 10px; }
    .actions-section { text-align: center; } .submit-btn { width: 100%; }
}

/* ============================================
   من هنا تحت: إضافات جديدة فقط (تسجيل دخول / قائمة /
   شريط تنقل) — مبنية بنفس الألوان والخط والأسلوب اللي
   فوق، من غير ما تلمس أي قاعدة من اللي فوق
   ============================================ */

.topnav {
    max-width: 1150px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.topnav-links { display: flex; gap: 10px; }
.topnav a.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.25);
}
.topnav a.nav-link:hover { border-color: var(--accent-orange); color: var(--accent-orange); }
.topnav a.nav-link.active { background: var(--accent-orange); border-color: var(--accent-orange); color: #1a1a1a; }
.topnav-user { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 14px; }
.role-pill {
    font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px;
    background: rgba(242,145,0,0.18); color: var(--accent-orange); border: 1px solid rgba(242,145,0,0.4);
}
.role-pill.employee { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.3); }
.logout-link {
    color: #fff; font-size: 13px; background: transparent; border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px; padding: 7px 14px; cursor: pointer;
}
.logout-link:hover { border-color: var(--alert-border); color: var(--alert-border); }

/* صفحة تسجيل الدخول: نفس الكارت الأصلي بس بعرض أصغر */
.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.dashboard-card.login-card { max-width: 400px; text-align: center; }
.login-card .brand-logo { max-width: 130px; margin: 0 auto 20px; display: block; }
.login-card h1 { font-size: 20px; color: var(--primary-color); font-weight: 800; margin: 0 0 6px; }
.login-card p.sub { font-size: 13px; color: var(--text-muted); margin: 0 0 24px; }
.login-card .field { text-align: right; margin-bottom: 16px; }
.error-box {
    background: var(--alert-bg); border: 1px solid #fca5a5; border-right: 5px solid var(--alert-border);
    color: var(--alert-text); font-size: 13px; font-weight: 700; padding: 10px 14px; border-radius: 8px;
    margin-bottom: 16px; display: none; text-align: right;
}

/* صفحة قائمة الأوردرات */
.list-toolbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 24px; clear: both; }
.list-toolbar input, .list-toolbar select { width: auto; }
.list-toolbar .grow { flex: 1; min-width: 180px; }
.list-toolbar .spacer { flex: 1; }
.orders-count { color: var(--text-muted); font-size: 13px; }

.order-row {
    border: 1px solid var(--border);
    border-right: 5px solid var(--primary-color);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 14px;
}
.order-row.is-outsourced { border-right-color: var(--accent-orange); }
.order-row-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.order-row-client { font-weight: 800; font-size: 16px; color: var(--text-main); }
.order-row-phone { font-size: 12px; color: var(--text-muted); margin-top: 2px; font-family: 'Courier New', monospace; }
.order-row-badges { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

.badge { font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; border: 1px solid; }
.badge-design { background: #eef2ff; color: var(--primary-color); border-color: #c7d2fe; }
.badge-outsource { background: #fff8f0; color: #b45309; border-color: var(--accent-orange); }
.badge-status-pending { background: #f1f5f9; color: var(--text-muted); border-color: var(--border); }
.badge-status-progress { background: #fff8f0; color: #b45309; border-color: var(--accent-orange); }
.badge-status-ready { background: #ecfdf5; color: #047857; border-color: #6ee7b7; }
.badge-status-delivered { background: #ecfdf5; color: #065f46; border-color: #34d399; }
.badge-status-cancelled { background: var(--alert-bg); color: var(--alert-text); border-color: var(--alert-border); text-decoration: line-through; }

.order-row-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    border-top: 1px solid #e2e8f0;
    padding-top: 12px;
}
.order-row-grid .lbl { font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
.order-row-grid .val { font-size: 13px; font-weight: 700; color: var(--text-main); }
.order-row-note { margin-top: 10px; font-size: 12px; color: var(--text-muted); background: #f8fafc; border-radius: 8px; padding: 8px 12px; }
.order-row-actions { display: flex; gap: 8px; }
.btn-sm {
    font-size: 12px; font-weight: 700; padding: 7px 14px; border-radius: 7px; cursor: pointer; border: 1px solid;
}
.btn-sm.edit { background: #eef2ff; color: var(--primary-color); border-color: #c7d2fe; }
.btn-sm.delete { background: var(--alert-bg); color: var(--alert-text); border-color: #fca5a5; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }

/* نافذة التعديل (للمدير) */
.modal-backdrop { position: fixed; inset: 0; background: rgba(10,10,35,.6); display: none; align-items: center; justify-content: center; padding: 20px; z-index: 50; }
.modal-backdrop.open { display: flex; }
.modal-backdrop .dashboard-card { max-width: 640px; max-height: 88vh; overflow-y: auto; }
.modal-backdrop .dashboard-card h3 { font-size: 18px; color: var(--primary-color); font-weight: 800; margin: 0 0 18px; }

.loader { text-align: center; padding: 50px; color: var(--text-muted); }

/* إضافات الإنتاج والصلاحيات والطباعة */
.btn-sm.print { background: #f8fafc; color: var(--primary-color); border-color: var(--border); }
.btn-sm.report { background: #fff8f0; color: #b45309; border-color: var(--accent-orange); }
.print-btn, .secondary-btn {
    background: #f8fafc;
    color: var(--primary-color);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 13px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    margin-left: 10px;
}
.print-btn:hover, .secondary-btn:hover { border-color: var(--accent-orange); color: #b45309; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
    clear: both;
}
.stat-box {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    background: #f8fafc;
}
.stat-box span {
    display: block;
    color: var(--accent-orange);
    font-size: 28px;
    font-weight: 900;
}
.stat-box small {
    color: var(--text-muted);
    font-weight: 700;
}

.user-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 220px auto;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--border);
    border-right: 5px solid var(--primary-color);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 12px;
}
.user-meta strong {
    display: block;
    color: var(--primary-color);
    font-size: 15px;
}
.user-meta span {
    display: inline-block;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .print-btn, .secondary-btn { width: 100%; margin: 0 0 10px; }
    .stats-grid { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
    .user-row { grid-template-columns: 1fr; }
}

/* ============================================
   قسم رفع الملفات
   ============================================ */
.upload-box {
    background: #f0f4ff;
    padding: 25px;
    border-radius: 12px;
    border: 2px dashed var(--primary-color);
    margin: 25px 0;
    clear: both;
    box-shadow: 0 4px 12px rgba(0, 0, 102, 0.05);
}
.upload-box-header { display: flex; align-items: flex-start; gap: 14px; }
.upload-box-header .upload-icon { font-size: 28px; line-height: 1; flex-shrink: 0; }
.upload-box-header h4 { margin: 0 0 4px 0; font-size: 15px; color: var(--primary-color); font-weight: 700; }
.upload-box-header p { margin: 0; font-size: 12px; color: var(--text-muted); }
.upload-btn-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s;
    margin-top: 16px;
    border: none;
}
.upload-btn-label:hover { background: var(--primary-hover); }
.upload-btn-label input[type="file"] { display: none; }
.upload-file-list { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.upload-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #fff;
    border: 1px solid #c7d2fe;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
}
.upload-file-item .file-name { color: var(--text-main); font-weight: 600; flex: 1; word-break: break-all; }
.upload-file-item .file-size { color: var(--text-muted); font-size: 11px; flex-shrink: 0; }
.upload-file-item .remove-file {
    color: var(--alert-text); cursor: pointer; font-size: 18px; font-weight: 700;
    background: none; border: none; padding: 0 4px; line-height: 1; flex-shrink: 0;
}
.upload-file-item .remove-file:hover { color: #7f1d1d; }

/* روابط الملفات في قوائم الأوردرات */
.order-files { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.order-files-label { font-size: 12px; color: var(--text-muted); font-weight: 700; }
.file-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #eef2ff;
    color: var(--primary-color);
    border: 1px solid #c7d2fe;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.file-link:hover { background: #c7d2fe; }

/* قسم تحميل الملفات في صفحة الإنتاج */
.files-download-box {
    margin-top: 12px;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-right: 4px solid var(--primary-color);
    border-radius: 10px;
    padding: 14px 16px;
}
.files-download-header {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.file-download-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 22px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    margin-top: 4px;
}
.file-download-all-btn:hover { background: var(--primary-hover); transform: translateY(-1px); }

/* حالات رفع الملف في صفحة الأوردر الجديد */
.upload-file-item.uploading { border-color: var(--accent-orange); background: #fff8f0; }
.upload-file-item.done     { border-color: #6ee7b7; background: #ecfdf5; }
.upload-file-item.error    { border-color: #fca5a5; background: #fef2f2; }

/* ============================================
   نظام الإشعارات
   ============================================ */
.notif-wrap { position: relative; display: none; }
.notif-bell {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 8px;
    padding: 7px 13px;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    transition: border-color 0.2s;
}
.notif-bell:hover { border-color: var(--accent-orange); color: var(--accent-orange); }
.notif-badge {
    position: absolute;
    top: -7px;
    left: -7px;
    background: var(--alert-border);
    color: #fff;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 900;
    min-width: 18px;
    height: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}
.notif-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    width: 300px;
    max-height: 360px;
    overflow-y: auto;
    z-index: 200;
    text-align: right;
}
.notif-dropdown.open { display: block; }
.notif-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    cursor: default;
}
.notif-item:last-child { border-bottom: none; }
.notif-item.unread { background: #eef2ff; }
.notif-item.read   { background: #fff; }
.notif-msg { font-size: 13px; color: var(--text-main); font-weight: 600; line-height: 1.5; }
.notif-item.unread .notif-msg { color: var(--primary-color); font-weight: 700; }
.notif-time { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.notif-empty { padding: 24px 16px; text-align: center; color: var(--text-muted); font-size: 13px; }

/* خانة التوجيه في أوردر جديد */
.assign-box {
    background: #f0f4ff;
    border: 1px solid #c7d2fe;
    border-right: 4px solid var(--primary-color);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
    clear: both;
}
.assign-box label { color: var(--primary-color); }
.assign-box select { background: #fff; }

/* ============================================
   معاينة النقاط في موديل التنفيذ
   ============================================ */
.points-preview-box {
    padding: 12px 16px;
    border-radius: 10px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    font-size: 14px;
    font-weight: 600;
}
.pts-great { color: #065f46; }
.pts-good  { color: #166534; }
.pts-ok    { color: #854d0e; }
.pts-late  { color: #991b1b; }

/* ============================================
   صفحة المكافآت
   ============================================ */
.rewards-legend {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
}
.legend-title { font-weight: 800; font-size: 14px; color: var(--primary-color); margin-bottom: 10px; }
.legend-items { display: flex; flex-wrap: wrap; gap: 8px; }
.legend-item {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}
.legend-item.gold   { background: #fef9c3; color: #713f12; border: 1px solid #fde047; }
.legend-item.silver { background: #f1f5f9; color: #334155; border: 1px solid #cbd5e1; }
.legend-item.bronze { background: #fff7ed; color: #7c2d12; border: 1px solid #fdba74; }
.legend-item.late1  { background: #fefce8; color: #713f12; border: 1px solid #fde68a; }
.legend-item.late2  { background: #fff7ed; color: #9a3412; border: 1px solid #fb923c; }
.legend-item.late3  { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

.rewards-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 8px;
}

/* بطاقة موظف */
.reward-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.rank-gold   { border-right: 5px solid #f59e0b; }
.rank-silver { border-right: 5px solid #94a3b8; }
.rank-bronze { border-right: 5px solid #cd7c3d; }
.rank-normal { border-right: 5px solid var(--border); }

.reward-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}
.reward-rank  { font-size: 32px; line-height: 1; min-width: 40px; text-align: center; }
.reward-info  { flex: 1; }
.reward-name  { font-size: 17px; font-weight: 800; color: var(--primary-color); }
.reward-meta  { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.reward-total-pts {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-orange);
    text-align: center;
    line-height: 1;
}
.reward-total-pts span { display: block; font-size: 11px; font-weight: 600; color: var(--text-muted); }

.reward-bar-wrap {
    height: 8px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
}
.reward-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-orange));
    border-radius: 10px;
    transition: width 0.5s;
}
.rank-gold   .reward-bar { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.rank-silver .reward-bar { background: linear-gradient(90deg, #64748b, #94a3b8); }

.reward-orders-list { border-top: 1px solid #f1f5f9; padding-top: 12px; }
.reward-order-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 12px;
    border-bottom: 1px dashed #f1f5f9;
}
.reward-order-row:last-child { border-bottom: none; }
.reward-order-num  { color: var(--accent-orange); font-weight: 800; min-width: 38px; }
.reward-order-name { flex: 1; color: var(--text-main); font-weight: 600; }
.reward-order-timing { color: var(--text-muted); min-width: 140px; text-align: center; font-size: 11px; }
.reward-order-pts  { color: var(--primary-color); font-weight: 800; min-width: 60px; text-align: left; }
.reward-more { font-size: 11px; color: var(--text-muted); padding: 6px 0 0; text-align: center; }

@media (max-width: 600px) {
    .rewards-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .reward-order-timing { display: none; }
}
