.lumise-tiydo-ai-settings {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px;
    margin: 10px;
}

li[data-tab="tiydo_ai"] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

i.tiydo-ai-icon {
    width: 30.5px;
    height: 30px;

    background-color: currentColor;

    -webkit-mask: url("../icons/tiydo-ai.svg") no-repeat center;
    -webkit-mask-size: contain;

    mask: url("../icons/tiydo-ai.svg") no-repeat center;
    mask-size: contain;
}

.chat-layout {
    background-color: white;
}

.chat-widget {
    width: 100%;
    height: auto;
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    font-size: 13px;
}

.chat-widget .tiydo-chat-con {
    padding: 10px 5px;
}

.chat-widget .tiydo-chat-con .msg-row {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;

}

.chat-widget .tiydo-chat-con .msg-row .bubble {
    padding: 5px;
    border: 1px solid #060000;
    border-radius: 5px;
}

.chat-widget .tiydo-chat-con .user {
    display: flex;
    justify-content: end;
}

.chat-layout .chat-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-top: 1px solid #e5e5e5;
    background: #fff;
}

.chat-layout .chat-input input {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.chat-layout .chat-input input:focus {
    border-color: #4f46e5;
}

.chat-layout .chat-input button {
    padding: 6px 8px;
    border: none;
    background: #4f46e5;
    color: #fff;
    cursor: pointer;
}

.chat-layout .chat-input button:hover {
    background: #4338ca;
}