.strawberry-chat-widget {
        --strawberry-chat-widget-toggle-background-color: var(--colors--green);
        --strawberry-chat-widget-toggle-background-color--active: #0f1d2b;
        --strawberry-chat-widget-toggle-border-color: #fff;
        --strawberry-chat-widget-toggle-border-color--active: #fff;
        --strawberry-chat-widget-toggle-background-image: none;
        --strawberry-chat-widget-toggle-background-image--active: none;
        --strawberry-chat-widget-toggle-size: 60px;
        --strawberry-chat-widget-toggle-border-radius: 50%;

        --strawberry-chat-widget-top: unset;
        --strawberry-chat-widget-right: 0px;
        --strawberry-chat-widget-bottom: 0px;
        --strawberry-chat-widget-left: unset;

        --strawbery-chat-header-background-color: var(--colors--green);
        --strawbery-chat-header-color: #fff;

        --strawberry-chat-widget-chat-background-color: #fff;
        --strawberry-chat-widget-chat-border-color: var(--colors--green);
        --strawberry-chat-widget-chat-border-radius: 10px;
        --strawberry-chat-widget-chat-width: 400px;
        --strawberry-chat-widget-chat-height: 600px;

        --strawberry-chat-widget-bot-background-color: rgb(244, 247, 249);
        --strawberry-chat-widget-bot-color: #000;

        --strawberry-chat-widget-avatar-size: 30px;

        --strawberry-chat-widget-bot-avatar-background-color: var(--colors--green);
        --strawberry-chat-widget-bot-avatar-background-image: none;
        --strawberry-chat-widget-bot-avatar-color: #fff;

        --strawberry-chat-widget-user-background-color: var(--colors--green);
        --strawberry-chat-widget-user-color: #fff;

        --strawbery-chat-send-button-background-color: var(--colors--green);
        --strawbery-chat-send-button-background-image: none;
        --strawbery-chat-send-button-color: #fff;


        position: fixed;
        top: var(--strawberry-chat-widget-top);
        right: var(--strawberry-chat-widget-right);
        bottom: var(--strawberry-chat-widget-bottom);
        left: var(--strawberry-chat-widget-left);
        z-index: 9999;
    }
    .strawberry-chat-widget__toggle {
        width: var(--strawberry-chat-widget-toggle-size);
        height: var(--strawberry-chat-widget-toggle-size);
        background-color: var(--strawberry-chat-widget-toggle-background-color);
        background-image: var(--strawberry-chat-widget-toggle-background-image);
        background-size: cover;
        border: 1px solid var(--strawberry-chat-widget-toggle-border-color);
        appearance: none;
        border-radius: var(--strawberry-chat-widget-toggle-border-radius);
        cursor: pointer;
        position: relative;
        transition: transform 0.2s ease-in-out;
        padding: 0;
        display: block;
    }
    .strawberry-chat-widget--active .strawberry-chat-widget__toggle {
        background-color: var(--strawberry-chat-widget-toggle-background-color--active, var(--strawberry-chat-widget-toggle-background-color));
        background-image: var(--strawberry-chat-widget-toggle-background-image--active, var(--strawberry-chat-widget-toggle-background-image));
        border-color: var(--strawberry-chat-widget-toggle-border-color--active, var(--strawberry-chat-widget-toggle-border-color));
    }
    .strawberry-chat-widget__toggle:hover {
        transform: scale(1.05);
    }
    @keyframes strawberry-chat-widget--notification-appear {
        0% {
            opacity: 0;
            transform: translateY(50%);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .strawberry-chat-widget__toggle[data-notification]::after {
        content: attr(data-notification);
        position: absolute;
        top: -5px;
        left: -5px;
        width: 20px;
        height: 20px;
        background-color: #f00;
        color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        animation: strawberry-chat-widget--notification-appear 0.5s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .strawberry-chat-widget__chat {
        display: none;
        position: fixed;
        bottom: calc(var(--strawberry-chat-widget-toggle-size) + var(--strawberry-chat-widget-bottom, 0px));
        right: var(--strawberry-chat-widget-right, auto);
        left: var(--strawberry-chat-widget-left, auto);
        z-index: 9999;
        background-color: var(--strawberry-chat-widget-chat-background-color);
        border: 1px solid var(--strawberry-chat-widget-chat-border-color);
        border-radius: var(--strawberry-chat-widget-chat-border-radius);
        width: var(--strawberry-chat-widget-chat-width);
        height: var(--strawberry-chat-widget-chat-height);
        max-height: 100vh;
        max-width: 100vw;
        overflow: hidden;
    }
    @media (max-width: 768px) {
        .strawberry-chat-widget__chat {
            width: 100dvw;
            height: 100dvh;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            border-radius: 0;
            border: none;
        }
    }
    .strawberry-chat-widget--active .strawberry-chat-widget__chat {
        display: flex;
        flex-direction: column;
    }
    .strawberry-chat-widget__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        border-bottom: 1px solid var(--strawberry-chat-widget-chat-border-color);
        background-color: var(--strawbery-chat-header-background-color);
        color: var(--strawbery-chat-header-color);
        flex-grow: 0;
        flex-shrink: 0;
    }
    .strawberry-chat-widget__header h3 {
        margin: 0;
        color: inherit;
    }
    .strawberry-chat-widget__header button {
        appearance: none;
        border: none;
        background: none;
        cursor: pointer;
        color: inherit;
        font-size: 1.5em;
    }
    .strawberry-chat-widget__messages {
        flex-grow: 1;
        padding: 10px;
        overflow-y: auto;
        display: flex;
        gap: 10px;
        flex-direction: column;
    }
    .strawberry-chat-widget__description {
        margin: 0;
        padding: 10px;
        background-color: #f0f0f0;
        border-radius: 0px;
        color: #000;
    }
    .strawberry-chat-widget__message {
        border-radius: 10px;
        display: flex;
        align-items: flex-start;
        gap: 2px;
        max-width: calc(100% - var(--strawberry-chat-widget-avatar-size));
    }
    .strawberry-chat-widget__message ul, .strawberry-chat-widget__message ol {
        margin-bottom: 1.25em;
        padding-inline-start: 0;
        list-style-position: inside;
    }
    .strawberry-chat-widget__message ul {
        list-style-type: disc;
    }
    .strawberry-chat-widget__message ol {
        list-style-type: decimal;
    }
    .strawberry-chat-widget__message ul li, .strawberry-chat-widget__message ol li {
        padding-inline-start: 0;
        padding-left: 0px;
    }
    .strawberry-chat-widget__message__avatar {
        width: var(--strawberry-chat-widget-avatar-size);
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        background-color: #efefef;
        flex-shrink: 0;
        position: relative;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }
    .strawberry-chat-widget__message--bot .strawberry-chat-widget__message__avatar {
        background-color: var(--strawberry-chat-widget-bot-avatar-background-color);
        background-image: var(--strawberry-chat-widget-bot-avatar-background-image);
        color: var(--strawberry-chat-widget-bot-avatar-color);
    }
    .strawberry-chat-widget__message__content {
        flex-grow: 1;
        padding: 10px;
        border-radius: 10px;
        position: relative;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .strawberry-chat-widget__message__content p:first-child {
        margin-top: 0;
    }
    .strawberry-chat-widget__message__content p:last-child {
        margin-bottom: 0;
    }
    @keyframes strawberry-chat-widget--loading {
        0% {
            transform: scale(0)
        }
        100% {
            transform: scale(1)
        }
    }
    .strawberry-chat-widget__message--loading .strawberry-chat-widget__message__avatar::before {
        content: '';
        position: absolute;
        top: 50%;
        right: -10px;
        width: 5px;
        height: 5px;
        background-color: #efefef;
        border-radius: 50%;
        animation: strawberry-chat-widget--loading 1s infinite alternate;
    }
    .strawberry-chat-widget__message--loading .strawberry-chat-widget__message__avatar::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -20px;
        width: 10px;
        height: 10px;
        background-color: #efefef;
        border-radius: 50%;
        transform: scale(0);
        animation: strawberry-chat-widget--loading 1s infinite alternate;
        animation-delay: 0.5s;
    }
    .strawberry-chat-widget__message--loading .strawberry-chat-widget__message__content {
        display: none;
    }
    .strawberry-chat-widget__message__avatar + .strawberry-chat-widget__message__content {
        border-top-left-radius: 0;
        margin-top: 15px;
    }
    .strawberry-chat-widget__message--user {
        align-self: flex-end;
    }
    .strawberry-chat-widget__message--user .strawberry-chat-widget__message__content {
        background-color: var(--strawberry-chat-widget-user-background-color);
        color: var(--strawberry-chat-widget-user-color);
        border-bottom-right-radius: 0;
    }
    .strawberry-chat-widget__message--bot {
        align-self: flex-start;
    }
    .strawberry-chat-widget__message--bot:not(:first-of-type) {
        margin-top: -15px;
    }
    .strawberry-chat-widget__message--bot .strawberry-chat-widget__message__content {
        background-color: var(--strawberry-chat-widget-bot-background-color);
        color: var(--strawberry-chat-widget-bot-color);
    }
    .strawberry-chat-widget__message--emoji .strawberry-chat-widget__message__content {
        font-size: 3em;
        background: transparent !important;
    }
    .strawberry-chat-widget__footer {
        flex-grow: 0;
        display: flex;
        border-top: 1px solid var(--strawberry-chat-widget-chat-border-color);
        overflow: hidden;
        flex-shrink: 0;
        align-items: center;
    }
    .strawberry-chat-widget__footer textarea {
        flex-grow: 1;
        padding: 10px;
        border: none;
        font: inherit;
        outline: none;
    }
    .strawberry-chat-widget__footer textarea:focus {
        outline: none;
    }
    .strawberry-chat-widget__footer button {
        appearance: none;
        border: none;
        background: none;
        cursor: pointer;
        flex-grow: false;
        height: 100%;
        min-width: 50px;
        width: var(--strawberry-chat-widget-send-button-width, auto);
        background-color: var(--strawberry-chat-send-button-background-color);
        background-image: var(--strawberry-chat-send-button-background-image);
        color: var(--strawbery-chat-send-button-color);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }
