/*

    GENERAL USAGE
    All buttons or links skinned as buttons use the .btn class followed by btn-{color}

*/

.btn {
    color: white !important;
    box-shadow: 0 0 4px #999;
    border: none;
    text-decoration: none;
    font-weight: 300 !important;
}

table .btn {
    min-height: 35px !important;
}

button:disabled, button[disabled]{
    border: 1px solid #999999 !important;
    background-color: #cccccc !important;
    color: #666666 !important;
}

.button:hover, .btn:hover {
    filter: brightness(90%);
}


/*

    BOOTSTRAP 5 OVERRIDES

*/

.btn.btn-danger {
    background-color: var(--color-danger);
}

.btn.btn-success {
    background-color: var(--color-success);
}