.label-table {
    border-collapse: collapse;
}

.label-table th,
.label-table td {
    border: 1px solid #ccc;
    padding: 5px 10px;
    text-align: center;
    white-space: nowrap;
}

.label-table thead th {
    background: #fff;
    font-weight: 500;
    color: var(--color-text-primary);
}

.label-table tbody tr:nth-child(odd) td {
    background: #f5f9f0;
}

.label-table tbody tr:nth-child(even) td {
    background: #fff;
}

.cb {
    width: 14px;
    height: 14px;
    display: inline-block;
    border: 1.5px solid #888;
    border-radius: 2px;
    vertical-align: middle;
    position: relative;
}

.cb.checked {
    border-color: #1a6fc4;
    background: #1a6fc4;
}

.cb.checked::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 1px;
    width: 5px;
    height: 8px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}