:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --text-color: #333;
    --background-color: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', Arial, sans-serif;
}

body {
    direction: rtl;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-item span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

/* Latest Posts */
.latest-posts {
    padding: 50px 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-10px);
}

.post-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    margin-bottom: 15px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    color: #777;
    margin-bottom: 15px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-meta i {
    margin-left: 5px;
}

/* About Brief */
.about-brief {
    background-color: white;
    padding: 50px 0;
    text-align: center;
}

.about-brief h2 {
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    margin-right: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* إضافات لصفحة المنشورات */
.posts-page .page-header {
    text-align: center;
    margin-bottom: 30px;
}

.posts-filter {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.filter-form .filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.no-posts {
    text-align: center;
    padding: 50px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.pagination a {
    display: inline-block;
    padding: 10px 15px;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.pagination a.active,
.pagination a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* أنماط صفحة المنشور الفردي */
.single-post-page .post-details {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.post-featured-image {
    margin-bottom: 30px;
}

.post-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.post-header h1 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.post-meta {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-left: 10px;
    object-fit: cover;
}

.post-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #777;
}

.post-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-details i {
    margin-left: 5px;
}

.post-content {
    line-height: 1.8;
    margin-bottom: 30px;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.social-share {
    display: flex;
    gap: 15px;
}

.social-share a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-share a:hover {
    color: var(--secondary-color);
}

/* أنماط التعليقات */
.comments-section {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.comments-section h2 {
    margin-bottom: 20px;
}

.add-comment {
    margin-bottom: 30px;
}

.add-comment textarea {
    width: 100%;
    height: 150px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    margin-bottom: 15px;
}

.login-to-comment {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.commenter-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
    object-fit: cover;
}

.commenter-name {
    font-weight: bold;
    margin-left: 10px;
}

.comment-date {
    color: #777;
    font-size: 0.9rem;
}

.comment-body {
    line-height: 1.6;
}

/* المنشورات ذات الصلة */
.related-posts {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.related-posts h2 {
    margin-bottom: 20px;
}

.related-posts .posts-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* أنماط صفحة البحث */
.search-results-page .search-header {
    text-align: center;
    margin-bottom: 40px;
}

.advanced-search-form {
    max-width: 700px;
    margin: 0 auto;
}

.search-inputs {
    display: flex;
    gap: 15px;
}

.search-inputs input[type="text"] {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-inputs select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-results-summary {
    text-align: center;
    margin-bottom: 20px;
    color: #777;
}

.no-results {
    text-align: center;
    padding: 50px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.offices-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.office-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.office-card:hover {
    transform: translateY(-10px);
}

.office-content h3 {
    margin-bottom: 15px;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #777;
    margin-bottom: 15px;
}

.office-details span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-details i {
    color: var(--secondary-color);
}

/* أنماط صفحة المكاتب */
.offices-page .page-header {
    text-align: center;
    margin-bottom: 40px;
}

.offices-filter {
    margin-bottom: 30px;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.office-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.office-card:hover {
    transform: translateY(-10px);
}

.office-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.office-header h3 {
    margin: 0;
}

.director-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.office-details {
    flex-grow: 1;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #777;
}

.office-info span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-info i {
    color: var(--secondary-color);
}

.office-actions {
    margin-top: 15px;
    text-align: center;
}

.no-offices {
    text-align: center;
    padding: 50px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    grid-column: 1 / -1;
}

@media screen and (max-width: 1024px) {
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .offices-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .related-posts .posts-grid {
        grid-template-columns: 1fr;
    }

    .search-inputs {
        flex-direction: column;
    }

    .offices-list {
        grid-template-columns: 1fr;
    }
}

/* أنماط صفحة تفاصيل المكتب */
.office-details-page .office-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.office-header .office-title h1 {
    margin-bottom: 10px;
}

.office-logo {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
}

.office-summary {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.office-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex-grow: 1;
}

.info-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.office-director {
    width: 350px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.director-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.director-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.director-details {
    text-align: center;
}

.director-details h3 {
    margin-bottom: 5px;
}

.director-details p {
    color: #777;
    margin-bottom: 10px;
}

.director-bio {
    font-style: italic;
    text-align: center;
}

.office-sections {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.office-posts .view-all-posts,
.office-members .view-all-members {
    text-align: center;
    margin-top: 20px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.member-card {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.member-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 15px;
}

.member-details h3 {
    margin-bottom: 5px;
}

.member-details p {
    color: #777;
}

@media screen and (max-width: 1024px) {
    .office-summary {
        flex-direction: column;
    }

    .office-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .office-director {
        width: 100%;
        margin-top: 20px;
    }

    .office-sections {
        grid-template-columns: 1fr;
    }

    .members-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .office-info {
        grid-template-columns: 1fr;
    }
}

/* أنماط صفحة الأعضاء */
.members-page .page-header {
    text-align: center;
    margin-bottom: 40px;
}

.members-filter {
    margin-bottom: 30px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.member-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-10px);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.member-details h3 {
    margin-bottom: 15px;
}

.member-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #777;
    margin-bottom: 15px;
}

.member-meta span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.member-meta i {
    color: var(--secondary-color);
}

.member-actions {
    display: flex;
    gap: 10px;
}

.no-members {
    text-align: center;
    padding: 50px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    grid-column: 1 / -1;
}

@media screen and (max-width: 1200px) {
    .members-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .members-grid {
        grid-template-columns: 1fr;
    }
}

/* أنماط صفحة الملف الشخصي */
.profile-page {
    background-color: var(--background-color);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.profile-avatar {
    position: relative;
}

.profile-avatar img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
}

.avatar-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    font-weight: bold;
}

.profile-info {
    flex-grow: 1;
}

.profile-info h1 {
    margin-bottom: 15px;
}

.profile-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #777;
}

.profile-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-meta i {
    color: var(--secondary-color);
}

.profile-bio {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.profile-actions {
    display: flex;
    gap: 15px;
}

.profile-sections {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.profile-stats .stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.stat-card h3 {
    margin-bottom: 10px;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.recent-posts .posts-grid,
.recent-comments .comments-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.comment-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.comment-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment-meta {
    display: flex;
    gap: 20px;
    color: #777;
}

.comment-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-meta i {
    color: var(--secondary-color);
}

.view-all-posts,
.view-all-comments {
    text-align: center;
    margin-top: 20px;
}

@media screen and (max-width: 1024px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-meta {
        justify-content: center;
    }

    .profile-sections {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .profile-avatar img,
    .avatar-placeholder {
        width: 150px;
        height: 150px;
    }

    .profile-meta {
        flex-direction: column;
        align-items: center;
    }

    .profile-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* أنماط صفحة تعديل الملف الشخصي */
.edit-profile-page .page-header {
    text-align: center;
    margin-bottom: 40px;
}

.edit-profile-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-section h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #777;
}

.current-image {
    text-align: center;
    margin-bottom: 20px;
}

.current-image img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
}

.form-group input[type="file"] {
    padding: 10px;
    border: 2px dashed #ddd;
    border-radius: 6px;
    width: 100%;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.alert {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media screen and (max-width: 768px) {
    .edit-profile-form {
        padding: 15px;
    }

    .form-section {
        padding: 20px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }
}

/* صفحة عن الاتحاد */
.about-page {
    padding: 40px 0;
}

.about-section {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.about-section h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 2.5em;
}

.about-content {
    display: grid;
    gap: 30px;
}

.about-content > div {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-right: 4px solid var(--secondary-color);
}

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5em;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-content ul {
    list-style-position: inside;
    padding-right: 20px;
}

.about-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-right: 20px;
}

.about-content ul li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    right: 0;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-section h1 {
        font-size: 2em;
    }
}

/* إعدادات القائمة العلوية */
.navbar {
    padding: 0.5rem 0;
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    margin: 0 0.5rem;
}

.navbar-nav .nav-link {
    color: #495057;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.navbar-nav .nav-link i {
    margin-left: 5px;
}

/* إزالة الدوائر السوداء */
.navbar-nav .nav-item::before,
.navbar-nav .nav-item::after {
    display: none !important;
}

.navbar-nav .nav-item {
    list-style-type: none;
}

/* تنسيق الشارات */
.navbar-nav .badge {
    margin-right: 5px;
    font-size: 0.7em;
    padding: 0.2em 0.4em;
}

/* تنسيق زر القائمة للشاشات الصغيرة */
.navbar-toggler {
    border: none;
    color: #495057;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* تحسين استجابة القائمة */
@media (max-width: 991.98px) {
    .navbar-nav .nav-item {
        margin: 0.25rem 0;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        justify-content: center;
    }
}
