:root {
    --chatbot-primary-color: #FACD42;
    --chatbot-primary-hover-color: #FBBD35;
}

#vidoChatbot {
    position: relative;
    z-index: 99;
}

#vidoChatbot .open-chat-btn {
    position: fixed;
    border: none;
    outline: none;
    bottom: 80px;
    right: 30px;
    background: var(--chatbot-primary-color);
    background-color: #FACD42;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

#vidoChatbot .open-chat-btn:hover {
    background: var(--chatbot-primary-hover-color);
}

#vidoChatbot .chat-dialog {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    width: 400px;
    max-width: 100%;
    height: 500px;
    background-color: #FFF;
    bottom: 130px;
    right: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#vidoChatbot .chat-dialog.show {
    opacity: 1;
    visibility: visible;
}

#vidoChatbot .chat-dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: var(--chatbot-primary-color);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

#vidoChatbot .chatbot-avatar {
    width: 40px;
    height: 40px;
    background-color: #292929;
    padding: 4px;
    border-radius: 50%;
}

#vidoChatbot .chat-dialog-header-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

#vidoChatbot .chat-dialog-header strong {
    color: #292929;
    font-size: 18px;
}

#vidoChatbot .close-chat-btn {
    background: none;
    border: none;
    outline: none;
    color: #292929;
    cursor: pointer;
    font-size: 24px;
}

#vidoChatbot .chat-dialog-input {
    align-items: center;
    padding: 16px;
}

#vidoChatbot .chat-dialog-input-wrapper {
    display: flex;
    gap: 8px;
    width: 100%;
    padding: 4px 8px;
    background-color: #f5f5fa;
    border-radius: 12px;
    align-items: center;
    justify-content: space-between;
}

#vidoChatbot .chat-dialog-input input {
    width: 90%;
    padding: 8px;   
    outline: none;
    border: none;
    background-color: transparent;
}

#vidoChatbot .chat-dialog-input-send-btn {
    width: 35px;
    height: 35px;
    background-color: var(--chatbot-primary-color);
    border: none;
    outline: none;
    border-radius: 50%;
    transition: all 0.3s;
}

#vidoChatbot .chat-dialog-input-send-btn:hover {
    background-color: var(--chatbot-primary-hover-color);
}

#vidoChatbot .chat-dialog-input-send-btn img {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

#vidoChatbot .chat-dialog-body {
    padding: 16px;
    overflow-y: auto;
    flex: 1;
    color: #292929;
}

#vidoChatbot .chat-dialog-body-wrapper {
    display: flex;
    flex-direction: column;
}

#vidoChatbot .chat-dialog-message {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    font-family: Arial, Helvetica, sans-serif;
}

#vidoChatbot .chat-dialog-message--user {
    background-color: #f5f5fa;
    padding: 8px 16px;
    border-radius: 12px;
    max-width: 70%;
    color: #292929;
    align-self: flex-end;
}

#vidoChatbot .chat-dialog-message--bot {
    background-color: var(--chatbot-primary-color);
    color:#292929;   
    padding: 8px 16px;
    border-radius: 12px;
    max-width: 70%;
}

#vidoChatbot .chat-dialog-message-content p{
    margin-bottom: 0;
    padding: 0;
}
