/* /Components/Checkbox.razor.rz.scp.css */
label.checkbox-label[b-6s8xw8qo7s] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    user-select: none;
}

[b-6s8xw8qo7s] input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    border: 1.5px solid var(--text-muted);
    border-radius: 3px;
    background: var(--bg-input);
    cursor: pointer;
    display: grid;
    place-content: center;
}

[b-6s8xw8qo7s] input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

[b-6s8xw8qo7s] input[type="checkbox"]:checked::after {
    content: "";
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

[b-6s8xw8qo7s] .checkbox-text {
    display: inline-flex;
    align-items: center;
}
