 #chatbot-popup{
    position: fixed;
    /* top: 10%;
    left: 10%; */
    width: 55%;
    height: 99%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow: hidden;
    bottom: 2px;
    right: 5px;
 }

 #open-chatbot{
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background: #182963;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
   }

 @media (max-width: 768px) {
    #chatbot-popup {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        box-shadow: none;
    }
}