.op-dashboard-system-status {
    table.opui-advanced-table {
        box-shadow: none;
        background-color: transparent;
        margin: 0;

        tbody {
            td {
                padding: 1rem;
            }

            tr {
                .label {
                    display: flex;
                    align-items: center;
                    font-weight: bold;
    
                    &.ok,
                    &.critical,
                    &.warning {
                        &:before {
                            display: flex;
                            content: "";
                            width: 10px;
                            height: 10px;
                            border-radius: 50%;
                            margin-right: 10px;
                        }
                    }
    
                    &.ok:before {
                        background-color:  var(--opui--success, #44ce44);
                    }
    
                    &.warning:before {
                        background-color:  var(--opui--warning, #ffbf00);
                    }
    
                    &.critical:before {
                        background-color:  var(--opui--danger,red);
                    }
                }
    
                .message {
                    .beta,
                    .development {
                        text-transform: uppercase;
                        padding: 3px 6px;
                        border-radius: 3px;
                        background-color: #cacaca;
                        color: #fff;
                        font-size: 14px;
                        font-weight: bold;
                    }

                    .beta {
                        background-color: #ffbf00;
                    }

                    .development {
                        background-color: #4349ff;
                    }

                    a {
                        color: #4349ff;
                    }
                }
            }
        }
    }

    .opd-system-status-copy-to-clipboard {
        display: none;
    }
}
