#custom-icons {
    position: absolute;
    left: 42px;
    color: #f9f9f9;
    height: 33px;
    margin: 2px auto;
    display: flex;
    align-items: center;
    z-index: 1;
}

#custom-icons>div {
    cursor: pointer;
}

.box {
    display: flex;
    height: 95vh;
    width: 100%;
}

.widget-frame-side {
    margin: 0;
    height: 100%;
    width: 30%;
    min-width: 350px;
}

.interaction-widget-inline {
    bottom: 70px;
    min-height: 323px;
    position: absolute !important;
    top: 40px;
    width: 100%;
}

body {
    margin: 0;
}

.widget-frame-inline {
    margin: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}



.circle {
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 5px;
}

gux-icon {
    color: #f9f9f9;
}


.icon-container {
    margin: 5px;
    user-select: none;
}

.genesysTab {
    display: none;
    height: 90dvh;
    border: none;
}


/* Help notification styles */
.help-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background-color: #ff4444;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 1.5s infinite;
}

.help-notification.new-release {
    display: block !important;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.help-icon-highlight {
    animation: highlight 2s infinite;
    border-radius: 50%;
}

@keyframes highlight {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7); }
    50% { box-shadow: 0 0 10px 5px rgba(255, 68, 68, 0.3); }
}

/* Version text styles */
.version-text {
    color: #ff4444;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease-in-out;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #ff4444;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.version-text-show {
    opacity: 1 !important;
    transform: translateX(0) !important;
    animation: fadeInSlide 0.5s ease-out;
}

@keyframes fadeInSlide {
    0% { 
        opacity: 0; 
        transform: translateX(-10px);
    }
    100% { 
        opacity: 1; 
        transform: translateX(0);
    }
}
