#chatbot-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}
#chatbot-toggle {
    background: #0056d6;
    color: #fff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px #222;
    cursor: pointer;
}
#chatbot-widget {
    width: 350px;
    background: #17181a;
    color: #eee;
    border-radius: 10px;
    padding: 16px;
    font-family: Inter, Arial, sans-serif;
    box-shadow: 0 0 24px #222;
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
}
#chat-history { /* ...existing styles... */ }
.message.bot { /* ...existing styles... */ }
.message.user { /* ...existing styles... */ }
#chat-form { /* ...existing styles... */ }
#chat-input { /* ...existing styles... */ }
#chat-form button { /* ...existing styles... */ }
#chatbot-close {
    color: #eee;
    background: #263239;
    border-radius: 6px;
    padding: 4px 10px;
    display: inline-block;
    font-weight: 500;
}

#chatbot-container {
    position: fixed;
    bottom: 60px; /* Higher above footer/disclaimer */
    right: 32px;  /* Adjust as needed */
    z-index: 9999;
}
#chatbot-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


#chatbot-widget {
    /* your prior styles plus: */
    position: absolute;
    bottom: 60px;
    right: 0;
    display: none;
}

#chatbot-toggle {
    background: linear-gradient(90deg, #7b47ff 0%, #357dfb 100%);
    box-shadow: 0 0 10px #222;
    color: #fff;
    /* Existing size/font styling */
}
