#chatbot-floating-box{
    position:fixed;
    bottom:80px;
    right:20px;
    width:320px;
    height:420px;
    background:white;
    box-shadow:0 0 20px rgba(0,0,0,0.2);
    border-radius:20px;
    display:none;
    flex-direction:column;
    overflow:hidden;
    z-index:9999;
}

#chatbot-floating-box.active{
    display:flex;
}

#chatbot-header{
    background:#0073aa;
    color:white;
    padding:12px;
    text-align:center;
    font-weight:bold;
}

#chatbot-body{
    flex:1;
    padding:10px;
    overflow-y:auto;
}

#chatbot-footer{
    display:flex;
    padding:8px;
}

#chatbot-input{
    flex:1;
    padding:8px;
}

#chatbot-send{
    width:40px;
}

#chatbot-toggle{
    position:fixed;
    bottom:20px;
    right:20px;
    border:none;
    background:#0073aa;
    color:white;
    width:60px;
    height:60px;
    border-radius:50%;
    font-size:22px;
    cursor:pointer;
    z-index:9999;
}
