/* ========================================
   base.css
   المتغيرات العامة والتنسيقات الأساسية
   ======================================== */

:root {
    --blue: #1155f5;
    --deep: #082b76;
    --text: #0b2360;
    --muted: #7180a3;
    --line: #e8edf7;
    --bg: #f7f9fd;
    --green: #24a05a;
    --red: #ef3d55;
    --purple: #6b43d9;
    --shadow: 0 14px 35px rgba(12, 35, 96, .08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
}

.site-shell {
    max-width: 1440px;
    margin: auto;
    padding: 24px;
}

/* الحالة الفارغة */
.empty-state {
    text-align: center;
    padding: 34px;
    color: #8090ad;
}

/* روابط التنظيف */
.clear-link {
    color: var(--blue);
    text-decoration: none;
    font-weight: 700;
}