.hk-widget-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px; /* Base offset */
    z-index: 9999;
}

/* Ensure it stays above horizontal scrollbar/chat widgets if they exist */
@media screen and (max-height: 800px) {
    .hk-widget-wrapper {
        bottom: 30px; 
    }
}

.hk-widget-container {
    position: relative;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
}

.hk-widget-container:hover {
    transform: scale(1.05);
}

.hk-symbol-img {
    width: 80px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hk-tap-counter {
    position: absolute;
    top: -5px;
    left: -5px;
    background-color: #ff6b6b;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.hk-mute-icon {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background-color: rgba(0,0,0,0.6);
    color: white;
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hk-mute-icon svg {
    width: 14px;
    height: 14px;
}
