:host {
    --color-white: #FFFFFF;
}

.embeddedMessagingFrame {
    z-index: 9999 !important;
}

.chat-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    height: 3.625rem;
    width: 53.75px;
    z-index: 30;
    border-radius: 50%;
    background: var(--color-white);
    border: none;
    cursor: pointer;
    box-shadow: 0px 4px 16px rgba(2, 32, 67, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-fab:hover {
    transform: scale(1.08);
    box-shadow: 0px 6px 24px rgba(2, 32, 67, 0.3);
    background: var(--color-white);
}

.chat-fab svg {
    width: 40px;
    height: 36px;
    transition: transform 0.3s ease;
}
.embeddedMessagingFrame {
    visibility: hidden;
}