/* Pagination container at the bottom */
.pagination-container {
    width: 100%;
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* حدود شفافة خفيفة */
    position: sticky;
    bottom: 0;
    background-color: transparent;
    /* شفاف تماماً */
    z-index: 10;
    color: white;
    /* لون النص أبيض */
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    /* خلفية سوداء شفافة فقط للأزرار */
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(8px);
    /* تأثير ضبابي فقط على منطقة الأزرار */
}

.pagination-btn {
    padding: 10px 20px;
    background-color: transparent;
    /* خلفية شفافة */
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* حدود شفافة */
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    min-width: 100px;
}

.pagination-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    /* شفافية أقل عند التحويم */
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pagination-btn:disabled {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.pagination-btn i {
    margin: 0 5px;
}

.page-info {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    /* أبيض مع شفافية قليلة */
    min-width: 100px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    /* ظل للنص لتحسين القراءة */
}

.no-results {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background-color: rgba(248, 249, 250, 0.7);
    /* خلفية شفافة */
    border-radius: 4px;
    margin: 20px 0;
    color: #6c757d;
    backdrop-filter: blur(5px);
    /* تأثير ضبابي */
}



/* رسالة عدم وجود نتائج */
.search-no-results-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 25px;
    margin: 25px 0;
    background-color: rgba(15, 15, 15, 0.85);
    border-radius: 10px;
    color: #e0e0e0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.search-no-results-container i {
    font-size: 28px;
    color: #f8f9fa;
    margin-bottom: 10px;
}

.search-no-results-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

/* التكامل مع عناصر التصفح الحالية */
.pagination-container {
    width: 100%;
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    bottom: 0;
    background-color: transparent;
    z-index: 10;
    color: white;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(8px);
}