/* Automatic checkmark style for lists */
.checklist-style,
ul.checklist-style {
    list-style: none !important;
    padding-left: 0 !important;
    color: #343a40;
    line-height: 1.8;
}

.checklist-style li,
ul.checklist-style li {
    position: relative;
    padding-left: 1.75rem !important;
    margin-bottom: 0.75rem !important;
    list-style: none !important;
}

.checklist-style li::before,
ul.checklist-style li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1.8;
}