#chatbot {
            position: absolute;
            bottom: 80px;
            right: 20px;
            width: 30%;
            height: 80%;
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0,0,0,0.2);
            display: none;
            overflow-y: auto;
            overflow-x: hidden;
        }
        #chatbot-toggle {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background-color: #FA7A50;
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            font-size: 24px;
            cursor: pointer;
            animation: pulse 2s infinite;
        }
        
        #chatbot-toggle img {
            width: 95%;
            height: 70%;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }
        #chatbot-close {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 16px;
            text-align: center;
            line-height: 20px;
            cursor: pointer;
        }
        #chatbot-arrow {
            position: absolute;
            bottom: -10px;
            right: 25px;
            width: 0; 
            height: 0; 
            border-left: 10px solid transparent;
            border-right: 10px solid transparent; 
            border-top: 10px solid #ccc; 
        }