/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&display=swap');

:root {
    --primary: #8c2818;
    --secondary: #552414;
    --bg: #f8f9fb;
    --white: #ffffff;
    --text-gray: #636e72;
    --sidebar-width: 280px;
}

/* منع المسطرة نهائياً */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Cairo', sans-serif; }
html, body { width: 100%; overflow-x: hidden; position: relative; background-color: var(--bg); }

/* السايد بار */
.sidebar {
    width: var(--sidebar-width);
    background: var(--white);
    height: 100vh;
    position: fixed;
    right: 0; top: 0;
    border-left: 1px solid rgba(0,0,0,0.05);
    padding: 30px 20px;
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link {
    display: flex; align-items: center; padding: 14px 20px;
    text-decoration: none; color: var(--text-gray);
    border-radius: 15px; font-weight: 600; margin-bottom: 8px;
    transition: 0.3s;
}
.nav-link.active, .nav-link:hover { background: var(--primary); color: white; box-shadow: 0 10px 20px rgba(140, 40, 24, 0.2); }

/* المحتوى الرئيسي */
.main-content { margin-right: var(--sidebar-width); padding: 25px; min-height: 100vh; transition: 0.4s; }

/* الهيدر الموحد */
.header {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--white); padding: 12px 25px; border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); margin-bottom: 25px;
}

.header-logo img { height: 35px; }
.header-clock { font-weight: 800; color: var(--secondary); font-size: 16px; background: #fdf2f1; padding: 5px 15px; border-radius: 50px; }

.menu-toggle {
    display: none; /* مخفي في الكمبيوتر */
    cursor: pointer; background: var(--primary); color: white;
    border: none; width: 45px; height: 45px; border-radius: 12px;
    align-items: center; justify-content: center; font-size: 22px;
}

/* الكروت والشبكة */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 25px; }
.stat-card {
    background: var(--white); padding: 25px; border-radius: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02); border-bottom: 5px solid var(--primary);
}
.stat-card h3 { font-size: 14px; color: var(--text-gray); margin-bottom: 8px; }
.stat-card .value { font-size: 30px; font-weight: 800; color: var(--secondary); }

/* بوكس الترحيب */
.welcome-box { 
    background: linear-gradient(135deg, var(--secondary), var(--primary)); 
    padding: 40px 20px; border-radius: 30px; color: white; text-align: center; 
}
.welcome-logo {
    background: white; display: inline-block; padding: 10px 25px;
    border-radius: 15px; margin-top: 15px;
}
.welcome-logo img { height: 45px; }

/* جداول وفورمات (لصفحات الطلبات والتقارير) */
.card { background: var(--white); border-radius: 25px; padding: 25px; box-shadow: 0 8px 20px rgba(0,0,0,0.02); margin-bottom: 25px; }
input, select, textarea { 
    width: 100%; padding: 12px; border-radius: 12px; border: 1px solid #eee; 
    margin-top: 5px; outline: none; font-family: 'Cairo';
}

/* ريسبونسيف الموبايل */
@media (max-width: 992px) {
    .sidebar { transform: translateX(100%); width: 260px; }
    .sidebar.active { transform: translateX(0); }
    .main-content { margin-right: 0; width: 100%; padding: 15px; }
    .menu-toggle { display: flex; order: 1; }
    .header-clock { order: 2; font-size: 13px; }
    .header-logo { order: 3; }
    .header { padding: 10px; border-radius: 15px; }
}