/* Chatbot Floating Button */
#float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
    z-index: 9999;
    background-image: url(/Style%20Library/Portal/images/message1.png);
    background-size: 60px;
    background-repeat: no-repeat;
    background-position: center;
}

#float-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Chatbot Container */
#chat-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    height: 550px;
    border: 1px solid #ccc;
    display: none;
    z-index: 10000;
    background: #fff;
    border-radius: 9px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#chat-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #chat-container {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
    
    #float-btn {
        bottom: 15px;
        right: 15px;
    }
}
