/**
 * Styly dla komponentu XonPagination.razor (wersja w btn-bottom-container).
 */

.xon-pagination-container {
    padding: 10px 15px;
    background: white;
    border-top: 1px solid #dee2e6;
}

.xon-pagination-info {
    font-size: 12px;
    white-space: nowrap;
    color: #6c757d;
}

.xon-pagination-pill {
    background: #002451;
    color: white;
    border-radius: 17px;
    padding: 6px 12px;
    min-height: 35px;
    display: flex;
    align-items: center;
}

.xon-pagination-nums {
    display: flex;
    align-items: center;
    gap: 4px;
}

.xon-pagination-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.xon-pagination-num:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.xon-pagination-num.active {
    background: white !important;
    color: #000 !important;
    font-weight: bold;
}

.xon-pagination-ellipsis {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    user-select: none;
    cursor: default;
}
