.vl-checklist {
    margin: 1.5em 0;
}

.vl-checklist ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1em 0;
}

.vl-checklist ul li {
    margin-bottom: 0.5em;
}

.vl-checklist label {
    display: flex;
    align-items: flex-start;
    gap: 0.6em;
    cursor: pointer;
    padding: 0.5em 0.75em;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
    font-size: 0.95em;
    line-height: 1.5;
    user-select: none;
}

.vl-checklist label input[type="checkbox"] {
    display: none;
}

.vl-checklist label .vl-checkmark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: border-color 0.2s ease, background 0.2s ease;
    background: #fff;
}

.vl-checklist label .vl-checkmark svg {
    display: none;
    width: 12px;
    height: 12px;
}

.vl-checklist label.checked {
    color: #1a7a00;
    background: #f0ffe6;
}

.vl-checklist label.checked .vl-checkmark {
    background: #86EF44;
    border-color: #86EF44;
}

.vl-checklist label.checked .vl-checkmark svg {
    display: block;
}

/* Progress bar */
.vl-progress-wrap {
    margin-bottom: 1em;
}

.vl-progress-label {
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 0.35em;
    color: #444;
    display: flex;
    justify-content: space-between;
}

.vl-progress-track {
    height: 10px;
    background: #e5e7eb;
    border-radius: 99px;
    overflow: hidden;
}

.vl-progress-bar {
    height: 100%;
    width: 0%;
    background: #86EF44;
    border-radius: 99px;
    transition: width 0.4s ease;
}
