# Customize embedded checklist UI

Checklist UI is mostly based on Bootstrap 4 using SASS, and here's the default checklist SCSS file:

{% content-ref url="/pages/NpDz4rpjuyEpFUoKTTh8" %}
[Default Checklist Scss File](/customize-embedded-checklist-ui/default-checklist-scss-file.md)
{% endcontent-ref %}

Below is the HTML code map of the embedded checklist UI

<figure><img src="/files/TslrDjCYNkPiP9d5NseR" alt=""><figcaption></figcaption></figure>

To customize the UI, go to the checklist page, and add customized CSS code into the Custom style input.

<figure><img src="/files/ndLdYpxJtO3hkMUHUU4Y" alt=""><figcaption><p>Custom Style Input</p></figcaption></figure>

Be sure to add `.cl-container--embed` to change only the embedded checklist UI. Below is a sample custom style:

```sass
.cl-container--embed {
  .cl-inner {
    .cl-top {
      .cl-top__title {
        font-weight: bold;
      }
      .cl-top__progress {}
    }
    .cl-body {
      .cl-item {
        &.cl-item--active {}
        .cl-item__line {}
        .cl-item__title {}
        .cl-item__video {}
      }
    }
  }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.checklist.getalvis.com/customize-embedded-checklist-ui.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
