@import url('https://fonts.googleapis.com/css2?family=Dubai:wght@400;700&display=swap');
@font-face {
    font-family: 'UAE';
    src: url('path-to-your-uae-font.woff2') format('woff2');
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Dubai', sans-serif;
    background-color: #f9f9f9;
    direction: rtl;
    text-align: right;
}

/* تصميم القائمة العلوية */
.navbar {
    background-color: #f4f4f4;
    padding: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar a {
    color: black; /* تعديل لون النص إلى الأسود */
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}

.navbar a:hover {
    text-decoration: underline;
}

.title {
    font-family: 'UAE', sans-serif; /* استخدام خط الإمارات */
    font-size: 48px;
    text-align: center;
    color: black; /* تعديل اللون إلى الأسود */
    margin: 20px 0; /* المسافة بين القائمة والصورة */
}

header {
    position: relative;
    width: 100%;
    height: 100vh; /* تغطية الشاشة بالكامل */
    background: url('https://media.albayan.ae/images/fahmi559/tcvt10.jpg') no-repeat center center/cover;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2); /* خلفية سوداء بنسبة شفافية 20% */
}

.header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    top: 50%;
    transform: translateY(-50%);
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.header-content p {
    font-size: 18px;
}

main {
    padding: 40px 20px;
    text-align: center;
}

/* تنسيق حقل البحث */
.search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.search-form label {
    font-weight: bold;
    margin-right: 10px;
}

.search-form input[type="number"],
.search-form input[type="text"],
.search-form select {
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #CCC;
    border-radius: 5px;
}

.search-form button {
    padding: 10px 20px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.search-form button:hover {
    background-color: #333;
}

table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    border: 1px solid #CCC;
    text-align: center;
    word-wrap: break-word; /* تجزئة الكلمات */
}

th {
    background-color: black; /* تعديل لون الجدول إلى الأسود */
    color: white;
}

tr:nth-child(even) {
    background-color: #F2F2F2;
}

tr:hover {
    background-color: #D1E8FF; /* تأثير عند تمرير الماوس */
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #F2F2F2;
    margin-top: 20px;
}

footer a {
    color: black; /* تعديل لون الروابط في التذييل إلى الأسود */
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    color: #C8102E;
}

@media screen and (max-width: 768px) {
    header {
        height: 100vh; /* ضبط الصورة لتغطي الشاشة بالكامل على الهواتف */
    }

    .header-content h1 {
        font-size: 32px;
    }

    .header-content p {
        font-size: 16px;
    }
}
