.table-wrapper {
    display: inline-block;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid #ccc;
}

table {
    border-collapse: separate;
    border-spacing: 0;
    //width: 100%;
}

td, th {
    border: 1px solid #ccc;
    padding: 4px;
}

.table-title {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 20;
    padding: 8px 0 0 4px;
}

thead th {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}

.ok {
    //background: #d4edda;
}

.warning {
    background: #fff3cd;
}

.critical {
    background: #f8d7da;
}

.row-selected {
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 4px 4px;
    margin-left: 2px;
    border: 1px solid #888;
    border-radius: 4px;
    background: #f0f0f0;
    text-decoration: none;
    color: black;
}
.btn:hover {
    background: #e0e0e0;
}

.small {
    font-size: 11px;
    text-align: left;
    //margin-top: 4px;
}
.cell-content {
    display: flex;
    gap: 2px;
    align-items: flex-start;
    padding: 2px 2px 0 2px;
}