/* Fixed positioning option */
.ia-fixed-bottom-right {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

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

.ia-image-container:hover {
    transform: scale(1.05);
}

/* Default image styling, can be overridden by Elementor controls */
.ia-trigger-img {
    width: 80px; 
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.ia-mute-icon {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* Allows clicks to pass through to the container */
}

.ia-mute-icon svg {
    width: 16px;
    height: 16px;
}