#almoretrade-chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}
#chat-toggle {
    background: linear-gradient(135deg, #7F00FF, #E100FF);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: white;
    font-size: 24px;
    cursor: pointer;
}
#almoretrade-chatbot {
    display: none;
    width: 320px;
    height: 400px;
    background: #1e1e2f;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    flex-direction: column;
    color: #fff;
    padding: 10px;
    overflow: hidden;
}
#chat-output {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 10px;
}
#chat-input {
    width: calc(100% - 90px);
    padding: 8px;
    border-radius: 8px;
    border: none;
    outline: none;
}
#send-btn {
    width: 70px;
    margin-left: 8px;
    border: none;
    border-radius: 8px;
    background: #7F00FF;
    color: white;
    cursor: pointer;
}
