/* Row action button colors inside list surfaces — legacy ListViewCRUDComponent.razor.css */

.listview-container button.btn {
    cursor: pointer;
}

.listview-container button.btn-primary {
    background-color: #1b6ec2 !important;
    border-color: #1861ac !important;
    color: #fff !important;
}

.listview-container button.btn-secondary {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #fff !important;
}

.listview-container button.btn-success {
    background-color: #198754 !important;
    border-color: #198754 !important;
    color: #fff !important;
}

.listview-container button.btn-danger {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #fff !important;
}

.listview-container button.btn-sm {
    padding: .25rem .5rem;
}

.listview-container button.btn:disabled {
    opacity: .65;
}

.listview-container button.btn:focus-visible {
    outline: 2px solid rgba(25, 110, 194, .35);
    outline-offset: 2px;
}
