/* Style dla checkboxów */
.tablesome__input--checkbox {
    cursor: pointer;
    width: 18px;
    height: 18px;
}

/* Styl dla checkboxa w trakcie przetwarzania */
.tablesome__input--checkbox.processing {
    opacity: 0.5;
    cursor: wait;
}

/* Style dla komórki z checkboxem */
.tablesome__cell--checkbox {
    text-align: center;
}

/* Hover efekt dla interaktywnych checkboxów */
.tablesome__input--checkbox:not([readonly]):hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Disabled style dla nieadministratorów */
.tablesome__input--checkbox[readonly] {
    cursor: not-allowed;
    opacity: 0.8;
}