/* Style for the chat icon */
.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    font-size: 2rem;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* Style for the chat window */
.chat-window {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 350px;
    height: 500px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: none; /* Hidden by default */
    z-index: 999;
    border-radius: 8px;
    overflow: hidden;
}

/*---- Optional transition effect---- */
.chat-window iframe {
    width: 100%;
    height: 100%;
}


#chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

#chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff6d5a;
    color: white;
    padding: 12px 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    z-index: 10000;
}