.floating-button {
    position: fixed;
    right: 6px;
    bottom: calc(2% + 54px);
    width: 44px;
    height: 44px;
    padding: 0;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2147483000;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.floating-button:hover,
.floating-button:focus-visible {
    background-color: #20bd5a;
    box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.floating-button:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

.floating-button img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    pointer-events: none;
}

.floating-button .tooltip-text {
    position: absolute;
    right: 0;
    bottom: calc(100% + 8px);
    width: max-content;
    max-width: calc(100vw - 32px);
    padding: 6px 8px;
    background-color: #25d366;
    box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.2);
    color: #fff;
    white-space: nowrap;
    text-align: center;
    border-radius: 6px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.floating-button:hover .tooltip-text,
.floating-button:focus-visible .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.videsk-top-container {
    right: 6px !important;
}

.videsk-button-iframe,
.videsk-button-iframe .videsk-iframe {
    width: 44px !important;
    height: 44px !important;
}

@media (max-width: 576px) {
    .floating-button {
        right: 6px;
        bottom: 134px;
    }

    .videsk-top-container {
        right: 0 !important;
    }

    .videsk-button-iframe {
        right: 6px !important;
    }
}
