/* تعديل حجم الخطوط */
body {
    font-size: 14px;
}

/* عرض الحاويات بحيث تكون متوافقة مع عرض الشاشة */
.container {
    width: 100%;
    padding: 0 10px;
}

/* تعديل أحجام الأزرار والمدخلات */
input, button {
    width: 100%;
    margin-bottom: 10px;
}

/* تعديل أحجام العناصر الأخرى حسب الحاجة */
.responsive-element {
    width: 100%;
    margin-bottom: 10px;
}

/* وسائل الإعلام لاستجابات الهاتف المحمول */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    .container {
        width: 100%;
        padding: 0 10px;
    }
    input, button {
        width: 100%;
        margin-bottom: 10px;
    }
    .responsive-element {
        width: 100%;
        margin-bottom: 10px;
    }
}
body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    margin: 0;
    padding: 0;
}

.container {
    width: 30%; /* تصغير الحجم إلى 30% */
    margin: 50px auto;
    padding: 20px;
    background: linear-gradient(to bottom right, #e0f7fa, #fce4ec);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo {
    display: block;
    margin: 0 auto 20px;
    width: 160px; /* حجم اللوغو */
}

h2 {
    text-align: center;
    color: #00796b;
}

label {
    display: block;
    margin: 10px 0 5px;
    color: #00796b;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    text-align: right;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #004d40;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #00796b;
}

.success-message {
    text-align: left;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #b71c1c; /* اللون الأحمر الداكن */
    color: white;
    border-radius: 5px;
}
body {
    background: linear-gradient(to right, #ece9e6, #ffffff);
    font-family: 'Cairo', sans-serif;
    text-align: center;
    direction: rtl;
    margin: 0;
    padding: 0;
}

.container {
    display: inline-block;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    max-width: 600px;
    width: 100%;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px; /* لخلق مسافة بين الصفوف */
    margin-top: 20px;
}

table, th, td {
    border: none;
}

th, td {
    padding: 15px;
    text-align: right;
    font-size: 18px;
}

th {
    background-color: #4CAF50;
    color: white;
    border-radius: 8px 0 0 8px;
    width: 40%;
}

td {
    background-color: #f9f9f9;
    border-radius: 0 8px 8px 0;
    width: 60%;
}

tr:nth-child(even) td {
    background-color: #e6f5e6; /* لون متناسق جديد */
}

tr:hover td {
    background-color: #d4e9d4;
}

tr:hover th {
    background-color: #45a049;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

th {
    background-color: #28a745;
    color: white;
}

td {
    background-color: #ffffff;
}

tr {
    margin-bottom: 10px;
}

/* تنسيق زر البحث */
.button-container {
    text-align: center;
    margin-top: 20px;
}

.button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
}

.button:hover {
    background-color: #218838;
}

}


/* تنسيقات الصفحة */

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 1000;
    cursor: pointer;
}

.footer-text {
    text-align: center;
    background-color: #654321; /* اللون البني الداكن */
    color: #fff;
    padding: 10px;
    margin-top: 20px;
    font-size: 18px;
}

.footer-link {
    color: #FFD700; /* اللون الذهبي */
    font-weight: bold;
    text-decoration: none;
}

.footer-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

