.chat-icon {
    z-index: 9999;
    border: 1px solid #ccc;
    cursor: pointer;
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    box-shadow: 0px 0px 30px -15px #000000;
}

.chat-icon svg {
    user-select: none;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    position: absolute;
    height: 25px;
}

.chat-iframe-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 400px;
    max-width: calc(100vw - 60px);
    height: 600px;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: none;
    z-index: 9999;
    box-shadow: 0px 0px 30px -15px #000000;
}

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