﻿body {
    font-family: Arial, sans-serif;
    direction: rtl; /* لتدعم اللغة العربية */
    background-color: #f4f4f4; /* خلفية رمادية فاتحة */
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 20px auto;
    background-color: #fff; /* خلفية بيضاء للكونتينر */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* ظل خفيف */
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.search-bar {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .search-bar label {
        margin-left: 10px;
        color: #555;
    }

    .search-bar input[type="text"] {
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
        width: 200px;
    }

    .search-bar button {
        padding: 8px 16px;
        background-color: #007bff;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: right;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* تنسيقات إضافية لزر البحث عند التمرير */
.search-bar button:hover {
    background-color: #0056b3;
}

/* تنسيقات إضافية لمدخل النص عند التركيز */
.search-bar input[type="text"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* تنسيقات إضافية للجدول عند التمرير على الصفوف */
tr:hover {
    background-color: #e0f7fa;
}
