.nt-check {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
    user-select: none;
}

.nt-check:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.nt-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.nt-check .box {
    width: 20px;
    height: 20px;
    border: 2px solid #94a3b8;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.nt-check input:checked+.box {
    border-color: #2563eb;
    background: #2563eb;
    color: #fff;
}

.nt-check .label {
    line-height: 1.2;
}

.nt-check small {
    color: #64748b;
}

.card-body.bg-light .js-edit-champ { display: none; }
.param-grid {
    display: grid;
    gap: 8px;
    max-height: 300px;
    overflow: auto;
    grid-template-columns: 1fr;
}

@media (min-width:576px) {
    .param-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.custom-check {
    --c: var(--bs-primary, #0d6efd);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
    transition: background .15s, border-color .15s, box-shadow .15s;
}

.custom-check:hover {
    background: rgba(13, 110, 253, .05);
}

.custom-check input {
    position: absolute;
    opacity: 0;
    inset: 0;
    pointer-events: none;
}

.custom-check .box {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border: 2px solid var(--c);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .15s ease;
}

.custom-check .box svg {
    width: 12px;
    height: 12px;
    opacity: 0;
    transform: scale(.5);
    transition: transform .15s, opacity .15s;
}

.custom-check input:checked+.box {
    background: var(--c);
    border-color: var(--c);
}

.custom-check input:checked+.box svg {
    opacity: 1;
    transform: scale(1);
}

.custom-check input:focus-visible+.box {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, .35);
}

.custom-check .text {
    line-height: 1.2;
}
