﻿
/* Pagination */
.av-pager {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
}

#avPager .btn {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    border-radius: 6px;
    padding: 4px 12px;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.av-pager-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.av-pagesize {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
    color: #374151;
}

    .av-pagesize select {
        width: auto;
        min-width: 73px;
        padding: 5px 10px;
    }

.av-pager-info {
    color: #6b7280;
    font-weight: 400;
}

.av-pager-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.av-page-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

    .av-page-buttons .btn.active {
        background: #dc3545;
        color: #fff;
        border-color: #dc3545;
    }
