> For the complete documentation index, see [llms.txt](https://docs.locoia.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.locoia.com/embed-white-label-portal/embed-admin-setup/3.-integrate-embed/customizing-css.md).

# 3.2 Customizing CSS

## Most important CSS classes for customization

* `el-main` - This is the main element, wrapping everything inside of it, you can here for example change the `max-width` parameter
* `el-collapse-item` - This is the wrapper around groups
* `connector-image` - The [highlighted connectors](/embed-white-label-portal/embed-admin-setup.md#create-embed) have this class
* `el-button--primary` - This is the primary button
* `el-form-item__label` - This is the label inside the Connector Auth form
* `auth-connector-img` - This is the Connector Auth image above the Connector Auth form
* `docs__container` - This is the container that contains the external and internal docs

You are of course not limited to these classes. You can prepare your customization in the best way by opening the embed without any customization first and then changing specific classes in your web browser's inspector.

## Implementing the CSS for your Embed

Please provide your custom CSS to our **support team** and we will implement it for you.\
The File should be a .css file and e.g. look similar to this file

{% tabs %}
{% tab title="CSS" %}

```css
.el-main {
    display: block;
    flex: 1;
    flex-basis: auto;
    overflow: auto;
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

.el-collapse-item {
    border: 2px solid #e5e9f2;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: #E5E9F2;
}

.el-collapse-item:hover {
    transform: scale(1.01);
    transition: 0.2s;
}

.connector-image {
    width: 68px;
    height: 40px;
    margin-right: 10px;
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.locoia.com/embed-white-label-portal/embed-admin-setup/3.-integrate-embed/customizing-css.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
