/* تعيين بعض التنسيقات الأساسية للصفحة */
body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* تنسيق الرأس */
header {
    background: #007BFF;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
}

/* تنسيق قائمة التنقل */
nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* تنسيق نموذج البحث */
.search-form {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search-form form {
    display: flex;
    flex-direction: column;
}

.search-form label {
    font-weight: bold;
    margin: 10px 0 5px;
}

.search-form input[type="text"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
}

.search-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background: #007BFF;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background: #0056b3;
}

/* تنسيق عرض أحدث وظيفة */
.latest-job {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.latest-job h2 {
    margin-top: 0;
}

/* تنسيق قائمة الوظائف */
.job-listing {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.job-listing h2 {
    margin-top: 0;
}

.job-listing p {
    margin: 10px 0;
}

.job-listing form {
    margin-top: 10px;
}

.job-listing button {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    background: #dc3545;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.job-listing button:hover {
    background: #c82333;
}

/* تنسيق التذييل */
footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: #fff;
}

footer p {
    margin: 0;
}

/* دعم التصميم المتجاوب */
@media (max-width: 600px) {
    .search-form, .latest-job, .job-listing {
        padding: 10px;
    }

    .search-form button, .job-listing button {
        width: 100%;
    }
}
