
/* 4. التصميم والتنسيق: تحسين المظهر والخطوط */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    direction: rtl; /* ليكون الموقع باللغة العربية */
    background-color: #f0f2f5;
}

/* 2. شريط التنقل */
nav {
    background-color: #1e975f;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

nav a:hover {
    color: #ffca28; /* يتغير اللون عند مرور الماوس */
}

/* 3. تنسيق العناصر المطلوبة */
.container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table, th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

th {
    background-color: #1e975f;
    color: white;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 20px auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea, button {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

button {
    background-color: #85c288;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

button:hover {
    background-color: #1b5e20;
}
