/* Global Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    gap: 5px;
}

.pagination .page-item .page-link {
    margin: 0 3px;
    border: 1px solid #eee;
    color: #333;
    padding: 8px 16px;
    border-radius: 5px !important;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    background: #fff;
}

.pagination .page-item.active .page-link {
    background-color: #ff6b35 !important;
    border-color: #ff6b35 !important;
    color: #fff !important;
}

.pagination .page-item:not(.active):not(.disabled) .page-link:hover {
    background-color: #ff6b35 !important;
    color: #fff !important;
    border-color: #ff6b35 !important;
}

.pagination .page-item.disabled .page-link {
    color: #999;
    background-color: #f8f9fa;
    border-color: #eee;
}

/* Hide redundant Laravel pagination elements */
nav[role="navigation"] .flex.items-center.justify-between,
nav[role="navigation"] .hidden.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between {
    display: none !important;
}

/* Ensure pagination wrapper centers everything */
.pagination-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}