﻿/* استيراد خط Tajawal */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;600&display=swap');

/* إعدادات أساسية */
html {
    font-size: 14px;
    direction: rtl;
    text-align: right;
    font-family: 'Tajawal', sans-serif;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* الجسم */
body {
    margin-bottom: 60px;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* تنبيه هام */
.important-notice p {
    font-size: 28px;
    font-weight: bold;
    color: #28a745;
    text-align: center;
    margin-bottom: 30px;
}

/* الكروت */
.custom-card {
    transition: all 0.3s ease;
    border: 1px solid #d1b16f;
    border-radius: 10px;
    background-color: #f8f2e7;
}

    .custom-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        background-color: #f3e6b3;
        border-color: #c2a56e;
    }

    .custom-card .card-body {
        transition: all 0.3s ease;
    }

    .custom-card:hover .card-body {
        color: #856404;
    }

/* العناوين */
h1, h2, h3, h4 {
    font-weight: 600;
    color: #2c3e50;
}

/* الروابط */
a {
    color: #3498db;
    text-decoration: none;
}

    a:hover {
        color: #2980b9;
    }

/* الفقرات */
p {
    font-size: 16px;
    color: #555;
}

/* الأزرار */
button {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    button:hover {
        background-color: #27ae60;
    }

/* الكونتينرات */
.container2,
.container3,
.container33,
.container4 {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: auto;
}

.container2 {
    width: 50%;
}

.container3 {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container33 {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container4 {
    width: 75%;
}

/* اللابل */
label {
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}

/* الإدخالات */
input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* الأخطاء */
.error {
    color: red;
    font-size: 14px;
}

/* التعليمات */
.instructions {
    font-size: 18px;
    line-height: 1.8;
    color: #34495E;
}

/* النصوص المميزة */
.highlight {
    color: #E74C3C;
    font-weight: bold;
}

/* الملاحظات */
.note {
    margin-top: 30px;
    background-color: #ECF0F1;
    border-right: 5px solid #3498DB;
    padding: 15px;
    font-size: 16px;
    color: #7F8C8D;
}

/* النافبار */
.nav-item {
    margin: 0 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link.text-custom {
    color: #e74c3c;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

    .nav-link.text-custom:hover {
        color: #c0392b;
    }

    .nav-link.text-custom:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
    }

/* التابات */
.nav-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
}

/* الأزرار الضيقة */
.narrow-button {
    padding: 4px 12px;
    font-size: 14px;
    min-width: auto;
}
