body {
    transition: all linear 1s
}

#root2026 {
    width: min(50%, 320px);
    height: min(75%, 480px);
    border: 2px black dashed;
    background-color: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tdov-message {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 4px;
    font-family: sans-serif;
    color: white;
    border: solid 1px ;
}

.tdov-ai-message {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    background-color: var(--maya-blue);
}

.tdov-user-message {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: var(--amaranth-pink);
}

.tdov-ai-chat {
    height: 80%;
    width: 100%;
    display: flex;
}

.tdov-ai-panel-reverse {
    flex-direction: column-reverse;
    overflow-y: scroll;
    scrollbar-width: none;
}

.tdov-ai-chat-option-container {
    height: 20%;
    width: 100%;
    flex-direction: column;
    justify-items: right;
    box-sizing: border-box;
    padding: 4px;
}

.tdov-ai-chat-option {
    word-wrap: normal;
    border-radius: 4px;
    font-size: 14px;
    border: 2px solid var(--amaranth-pink);
    background-color: white;
    color: black;
    font-family: sans-serif;
    transition: all 0.25s ease-in-out;
    box-sizing: border-box;
    padding: 4px;
    max-width: 80%;
    user-select: none;
}

.tdov-ai-chat-option:hover {
    background-color: #bbb;
    border-color: #cf7b99;
    cursor: pointer;
}

.tdov-ai-message-content-block {
    display: grid;
    grid-template-columns: 1fr 24px;
    column-gap: 4px;
    row-gap: 2px;
}

.tdov-ai-message-content-block-tts {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.tdov-ai-message-content-block-tts > .fa-solid {
    font-size: 24px;
    transition: 0.25s ease-in-out;
}
