﻿/* إعدادات عامة */
body {
    background-color: #f8f9fa;
    direction: rtl;
    text-align: right;
    font-family: 'Cairo', Tahoma, Arial, sans-serif;
    font-size: 16px;
    color: #333;
    margin: 0;
    padding: 0;
}

/* العناوين العامة */
.page-title {
    text-align: center;
    color: #004080;
    font-weight: 700;
    margin-bottom: 25px;
}

/* البطاقات */
.card {
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    background-color: #fff;
    margin-bottom: 20px;
}

/* الأزرار */
.btn-primary {
    background-color: #004080;
    border-color: #004080;
    border-radius: 25px;
    padding: 8px 25px;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-primary:hover {
        background-color: #002e5a;
        border-color: #002e5a;
    }

/* الحقول */
.form-control {
    border-radius: 0.5rem;
    text-align: right;
    font-size: 15px;
}

    .form-control:focus {
        border-color: #004080;
        box-shadow: 0 0 3px rgba(0,64,128,0.25);
    }

/* النصوص */
label {
    font-weight: 600;
    color: #333;
}

.text-danger {
    color: #dc3545;
}

.text-success {
    color: #28a745;
}

/* الجداول */
.table {
    background-color: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
}

    .table th {
        background-color: #004080;
        color: white;
        text-align: center;
    }

    .table td {
        text-align: center;
        vertical-align: middle;
    }

/* تحسين الموبايل */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .btn-primary {
        width: 100%;
    }
}

/* صفحة تسجيل الدخول */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f4f8;
}

.login-box {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 1rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    width: 340px;
    text-align: right;
}

    .login-box h2 {
        text-align: center;
        color: #004080;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .login-box label {
        display: block;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .login-box .form-control {
        width: 100%;
        margin-bottom: 15px;
        border-radius: 0.5rem;
        text-align: right;
    }

    .login-box .btn-primary {
        width: 100%;
        padding: 10px;
        font-size: 16px;
        border-radius: 25px;
    }

    .login-box .message {
        text-align: center;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .login-box .text-danger {
        color: #dc3545;
    }

    .login-box .text-success {
        color: #28a745;
    }
/* ========== صورة المعاينة (Popup) ========== */
.clickable-image {
    cursor: pointer;
    transition: transform 0.2s ease;
    border-radius: 10px;
}

    .clickable-image:hover {
        transform: scale(1.05);
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    }
