/* تحسين شكل Pagination */
.pagination {
    justify-content: center;
    margin: 30px 0;
    gap: 5px;
}

.pagination .page-item {
    margin: 0 2px;
}

.pagination .page-link {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 8px 12px;
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-link:hover {
    background-color: #f8f9fa;
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #fff;
    border-color: #dee2e6;
    opacity: 0.5;
}

/* تصغير الأسهم */
.pagination .page-link i {
    font-size: 12px;
}

/* تحسين الأسهم السابق والتالي */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    font-size: 12px;
    padding: 8px 10px;
}

/* إخفاء النص وإظهار الأيقونات فقط للأسهم */
.pagination .page-item:first-child .page-link::before {
    content: "‹";
    font-size: 16px;
    font-weight: bold;
}

.pagination .page-item:last-child .page-link::before {
    content: "›";
    font-size: 16px;
    font-weight: bold;
}

/* إخفاء النص الأصلي للأسهم */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    font-size: 0;
    line-height: 0;
}

.pagination .page-item:first-child .page-link::before,
.pagination .page-item:last-child .page-link::before {
    font-size: 14px;
    line-height: 1;
}

/* تحسين للشاشات الصغيرة */
@media (max-width: 768px) {
    .pagination .page-link {
        padding: 6px 8px;
        font-size: 12px;
        min-width: 32px;
    }
    
    .pagination .page-item:first-child .page-link::before,
    .pagination .page-item:last-child .page-link::before {
        font-size: 12px;
    }
}

/* تحسين للغة العربية */
[dir="rtl"] .pagination .page-item:first-child .page-link::before {
    content: "›";
}

[dir="rtl"] .pagination .page-item:last-child .page-link::before {
    content: "‹";
}

/* تحسين المسافات */
.pagination-wrapper {
    margin: 40px 0;
    text-align: center;
}

.pagination-info {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}