  
.floating-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 9999;  
    filter: drop-shadow(2px 2px 0px rgba(0, 102, 255, 0.75));
    transition: transform 0.2s ease, filter 0.2s ease;
}

.floating-btn:hover {
    transform: scale(1.08);
    filter: drop-shadow(2px 2px 0px rgba(0, 102, 255, 0.75));
}

.iframe-widget-container {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: calc(100vw - 48px);
    height: calc(100vh - 120px);
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.iframe-widget-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.iframe-widget-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}