/* Generated by tools/build-css-bundles.mjs. Edit the source CSS files, not this bundle. */
/* Source: SharedComponents/Pagination/base.css */
/* Reorganized from wwwroot/css/components.css. */


.fr-pagination__list {
    list-style: none;
    padding-left: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 8px;
}


.fr-pagination__link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    line-height: 1;
    padding: 0;
    text-align: center;
    border-radius: 3px;
    box-sizing: border-box;
    background-color: #e0e0e0;
    border: 1px solid #e0e0e0;
    color: #000;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s;
}


.fr-pagination__link svg.fr-icon {
    width: 16px;
    height: 16px;
}


.fr-pagination__link:hover:not(.fr-pagination__link--disabled):not(.fr-pagination__link--current) {
    background-color: #c0c0c0;
    border-color: #c0c0c0;
    cursor: pointer;
}


.fr-pagination__link--current {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    color: #000;
    cursor: default;
    font-weight: bold;
}


.fr-pagination__link--disabled {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #8c8c8c;
    pointer-events: none;
    cursor: default;
}
