#tauria-ai-admin-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--tauria-primary);
    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;
}

ul {
    list-style-type: none !important;
}

span.typing-text{
margin-right: 5px;
opacity: 1;
font-weight: 600;
color: var(--tauria-primary);
font-family: 'Merriweather 24pt';
}

#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;
       color: var(--tauria-text);
}

.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: 17px;
}
.user-message {
    background: var(--tauria-primary);
    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: var(--tauria-primary);
    color: white;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
}

.hidden {
    display: none;
}

button#chat-close {
    color: #000000;
    font-size: 18px;
}

/* Launcher hover polish remains from before */
#tauria-ai-admin-button { transition: transform .2s ease, box-shadow .2s ease; }
#tauria-ai-admin-button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }

/* Typing indicator inside an AI bubble */
.ai-message.typing {
  position: relative;
  opacity: .9;
}
.typing-dots {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--tauria-primary);
}
.typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  animation: taurBlink 1s infinite ease-in-out;
  background: currentColor;
  opacity: .4;
}
.typing-dots span:nth-child(2){ animation-delay: .15s; }
.typing-dots span:nth-child(3){ animation-delay: .3s; }

@keyframes taurBlink {
  0%, 80%, 100% { transform: translateY(0); opacity:.4; }
  40% { transform: translateY(-3px); opacity:1; }
}

