#tauria-ai-admin-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #007bff;
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 999999;
}

#tauria-ai-admin-chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(155 155 155 / 30%);
    z-index: 99999;
    border-radius: 10px !important;
     border: 1px solid #b7b5b5;
}

.online-txt::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #01b701;
    border-radius: 50%;
    margin-right: 5px;
}

#chat-header {
    background: white;
    color: #000000;
    padding: 10px;
    border-bottom: 1px solid #dfdfdf;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.chat-fl{
    display: flex;
    justify-content: space-between;
    padding-bottom: 5px;
}

#chat-body {
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
    height: 400px;
}

#chat-input-container {
    display: flex;
    padding: 10px;
        gap: 10px;
}

.ai-message {
    margin-top: 10px;
    background: #ededed;
    padding: 10px;
    border-radius: 5px;
}

div#chat-input-container input#chat-input {
    width: 75%;
    height: 40px;
    border-radius: 5px;
    padding: 10px;
    border: 1px solid black;
    font-family: inherit;
    font-size: 16px;
}
.user-message {
    background: #007bff;
    text-align: left;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    margin-top: 15px;
    width: fit-content;
    color: white;
}

span#chat-title {
    font-size: 18px;
}

#chat-input-container {
    display: flex;
    padding: 20px 10px;
    border-top: 1px solid #b7b5b5;
}

.ai-message.error {
    background: #007bff;
    padding: 8px;
    margin-bottom: 10px;
    text-align: left;
    color: white;
    border-radius: 5px;
    border-bottom-left-radius: 0px;
}
button#chat-send {
    width: 25%;
    background: #007bff;
    color: white;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
}

.hidden {
    display: none;
}

button#chat-close {
    color: #000000;
    font-size: 18px;
}
