/* استدعاء خط مريح */
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #1e3c72, #2a5298, #bdc3c7);
    color: #fff;
}

/* ترويسة */
.navbar {
    background: rgba(0, 0, 0, 0.6);
}

/* الحاوية */
.container {
    padding: 40px 20px;
}

/* العناوين */
h1, h2, h3 {
    color: #f1f1f1;
}

/* الأزرار */
.btn-custom {
    background: #2a5298;
    color: #fff;
    border-radius: 8px;
}
.btn-custom:hover {
    background: #1e3c72;
    color: #fff;
}

/* لوحة التحكم */
.dashboard {
    position: relative;
    min-height: 100vh;
    padding: 40px;
    background: #f9f9f9;
    color: #333;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* الخلفيات الطبية (watermark) */
.dashboard::before {
    content: "";
    background: 
        url("images/cbc.png") no-repeat left top,
        url("images/xray.png") no-repeat right top,
        url("images/ultrasound.png") no-repeat left bottom,
        url("images/ecg.png") no-repeat right bottom;
    background-size: 250px, 250px, 250px, 250px;
    opacity: 0.08;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.dashboard * {
    position: relative;
    z-index: 1;
}
