

.checked {
    text-decoration: line-through;
    color: gray;
}

.checklist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0.75rem 1rem;
}

.checklist-meta {
    font-size: 0.8rem;
    color: #6c757d;
}

.form-check-input.custom-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: none !important;
    outline: none !important;
    width: 1.5rem;
    height: 1.5rem;
    margin-top:0;
    
}

    .form-check-input.custom-secondary:checked {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
    }

    .form-check-input.custom-secondary:focus {
        box-shadow: none;
        outline: none;
    }

.checklist-section {
    margin-bottom: 3rem;
}

    .checklist-section h4 {
        margin-bottom: 2rem;
    }