.custom-pagination {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.custom-pagination .align-items-sm-center {
    gap: 10px;
}

.custom-pagination nav {
    display: flex;
}

/* Override Laravel Bootstrap Pagination if loaded */
.custom-pagination .pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.custom-pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    color: #495057;
    text-decoration: none;
    background: #fff;
    transition: all 0.2s;
    font-weight: 500;
}

.custom-pagination .page-item.active .page-link {
    background-color: var(--text-color, #28a745);
    border-color: var(--text-color, #28a745);
    color: #fff;
}

.custom-pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.custom-pagination .page-item .page-link:hover:not(.disabled) {
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #212529;
}
