.cmlfnw-library-page .cmlfnw-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}
.cmlfnw-library-page .cmlfnw-upload-panel {
    margin-bottom: 2rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
}
.cmlfnw-media-table th,
.cmlfnw-media-table td {
    vertical-align: middle;
}
.cmlfnw-media-table img.cmlfnw-thumb {
    max-width: 80px;
    max-height: 80px;
}
.cmlfnw-settings-page table th,
.cmlfnw-settings-page table td {
    padding: 12px;
}

/*Pagination css*/
/* Pagination wrapper */
.tablenav-pages {
    margin: 12px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Pagination links */
.tablenav-pages .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    margin-left: 4px;

    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 5px;

    color: #2271b1;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;

    box-sizing: border-box;
    transition: all 0.15s ease;
}

/* Hover */
.tablenav-pages .page-numbers:hover {
    background: #f0f6fc;
    border-color: #2271b1;
    color: #135e96;
}

/* Current page */
.tablenav-pages .page-numbers.current {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
    font-weight: 600;
}

/* Previous / Next */
.tablenav-pages .page-numbers.prev,
.tablenav-pages .page-numbers.next {
    font-size: 18px;
    font-weight: 400;
}

/* Disabled pagination */
.tablenav-pages .page-numbers.dots {
    border-color: transparent;
    background: transparent;
    color: #646970;
    cursor: default;
}

.tablenav-pages .page-numbers.dots:hover {
    border-color: transparent;
    background: transparent;
}

/* Keyboard focus */
.tablenav-pages .page-numbers:focus {
    outline: 2px solid #2271b1;
    outline-offset: 1px;
    box-shadow: none;
}

/* Mobile */
@media (max-width: 600px) {
    .tablenav-pages {
        justify-content: center;
        margin: 15px 0;
    }

    .tablenav-pages .page-numbers {
        min-width: 32px;
        height: 32px;
        padding: 0 8px;
        margin-left: 3px;
    }
}