/* Action Button — icon-only link/button for table rows */
.pui-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: none;
    border-radius: 50%;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.pui-action-btn .material-icons {
    font-size: 20px;
    color: #001391;
}
.pui-action-btn:hover {
    background: #001391;
}
.pui-action-btn:hover .material-icons {
    color: #fff;
}