#chat-widget {
    --bs-accordion-inner-border-radius: 0;
    position: fixed;
    bottom: 0;
    right: 0;
    border-left: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    min-height: 2rem;
    background-color: white;
    max-width: 25rem;

    h2 {
        min-width: 25rem;
    }

    .accordion-body {
        height: 90vh;

        padding: 0;
    }

    .prompt {

    }
    .messages {
        border: 1px solid red;
        overflow-y: scroll;
    }

    .message {
        background-color: #f2f2f2;
        padding: 0px 12px 2px 12px;
        margin-bottom: 1rem;
        width: 90%;

        &.who-system {
            width: 100%;
            background-color: #f1c21b11;
            padding: 1rem 2rem;

            .system-message {
                max-height: 300px;
                overflow: hidden;
            }

            .showfull {
                max-height: fit-content !important;
            }
        }

        &.who-user {
            margin-left: 9%;
        }

        & > p {
            margin-bottom: 0;
            margin-top: 0.5rem;
        }

        & > p:first-child {
            margin-top: 0;
        }

        .usage {
            background-color: #aee;
            padding: 2px 10px;
            border-radius: 4px;
            margin-left: -0.5rem;
            margin-right: -0.5rem;
            margin-top: 0.5rem;
        }
    }

}
