/* === استيراد خط Cairo من Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

/* === الإعداد العام للجسم حسب اللغة === */
html[dir="rtl"] body, html[dir="ltr"] body {
    font-family: 'Cairo', 'Segoe UI', sans-serif;
    background-color: #edf3fd; /* Light blue-gray background */
    color: #222; /* Dark text */
    line-height: 1.8;
    font-size: 16px;
}

html[dir="rtl"] h1, html[dir="rtl"] h2,
html[dir="ltr"] h1, html[dir="ltr"] h2 {
    color: #078080; /* Teal/cyan for headings */
    font-weight: bold;
}

/* === الهيدر والقائمة === */
.pkp_site_name {
    font-size: 2rem;
    color: #ffffff;
    font-weight: bold;
}

.pkp_navigation_primary {
    background-color: #078080; /* Teal/cyan background for primary navigation */
    border-bottom: 4px solid #007acc; /* Blue border at the bottom */
}

.pkp_navigation_primary a {
    color: #ffffff !important;
    padding: 12px 20px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.pkp_navigation_primary a:hover {
    background-color: #045c5c; /* Darker teal/cyan on hover */
    color: #ffdd57 !important; /* Yellow-gold on hover */
}

/* === القائمة المنسدلة === */
.pkp_navigation_primary .dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #045c5c; /* Darker teal/cyan border */
    border-radius: 6px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}

.pkp_navigation_primary .dropdown-menu a {
    color: #045c5c !important; /* Darker teal/cyan for dropdown items */
    padding: 10px 15px;
}

.pkp_navigation_primary .dropdown-menu a:hover {
    background-color: #f2f2f2; /* Light gray on hover */
}

/* === البحث === */
.pkp_search input[type="text"] {
    border-radius: 20px;
    padding: 6px 15px;
    border: 1px solid #ccc;
}

/* === المقالات / المربعات === */
.obj_article_summary, .pkp_page_content .pkp_block {
    background-color: #fdfdfd;
    padding: 20px;
    margin-bottom: 25px;
    border: 3px solid #078080; /* Teal/cyan border */
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(38, 137, 140,50);
    text-align: center;
}

/* === الفوتر === */
.pkp_structure_footer {
    background-color: #aaacae; /* Gray background */
    color: #000000; /* Black text */
    text-align: center;
    padding: 20px 0;
}

.pkp_structure_footer a {
    color: #ffdd57; /* Yellow-gold for footer links */
    text-decoration: none;
}

.pkp_structure_footer a:hover {
    color: #ffffff; /* White on hover */
}

/* === روابط عامة === */
a {
    color: #005fa3; /* Dark blue */
    text-decoration: none;
}

a:hover {
    color: #ff6600; /* Orange on hover */
    text-decoration: underline;
}

/* === أزرار تقديم المقالات === */
.pkp_button, .submit-button {
    background-color: #007acc; /* Blue background */
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.pkp_button:hover, .submit-button:hover {
    background-color: #005fa3; /* Darker blue on hover */
}

/* === عرض فريق التحرير بطريقة جميلة === */
.editors, .editorial_team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 10px;
}

.editorial_team .name {
    font-weight: bold;
    color: #003366;
}

