.chat-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    text-decoration: none;

    background-color: var(--green-500, #04853b)
}

.chat-widget img {
    display: block;
    width: 100%;
    height: 100%;
}

.chat-widget:focus-visible {
    outline: 3px solid #FFD700;
    outline-offset: 4px;
    border-radius: 50%;
}


@media print {
    .chat-widget {
        display: none !important;
    }
}

@media (max-width: 500px) {
    .chat-widget {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }
}
