.column-user_status,
.user_status_reasen,
.column-user_status_reasen {
    text-align: center !important;
    vertical-align: middle !important;
}

.user-status-deactive,
.user-status-active {
    background-color: #2ecc71;
    color: #FFF;
    fill: #FFF;
    padding: 3px 10px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 65px;
}

.user-status-deactive {
    background-color: #e74c3c;
}

.bua-toggle-switch .toggle-input {
    display: none;
}

.bua-toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 25px;
}

.bua-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2ecc71;
    transition: 0.4s;
    border-radius: 34px;
}

.bua-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 5px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-input:checked + .bua-toggle-slider {
    background-color: #e74c3c;
}

.toggle-input:checked + .bua-toggle-slider:before {
    transform: translateX(30px);
}