/* Checkbox container styling */
.checkboxContainer {
    display: inline-flex;
    align-items: center;
    margin: 0 2px;
    vertical-align: middle;
}

/* Checkbox input styling */
.checkbox {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
    border: 1.5px solid #666;
    border-radius: 3px;
    appearance: auto;
}

.checkbox:checked {
    background-color: #4a7dfc;
    border-color: #4a7dfc;
}
