#genux-ai-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}
.genux-header {
    background: #1a1a1a;
    color: #fff;
    padding: 15px;
    font-weight: bold;
}
.genux-chat-area {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}
.genux-input-area {
    padding: 10px;
    border-top: 1px solid #eee;
}
.genux-audit-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #eaeaea;
}

.genux-premium-form h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.genux-premium-form .form-group {
    margin-bottom: 15px;
}

.genux-premium-form input, .genux-premium-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.genux-btn-gradient {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1a1a1a 0%, #444 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.genux-btn-gradient:hover {
    transform: translateY(-2px);
}
@keyframes pulse-ring {
  0% { transform: scale(.33); }
  80%, 100% { opacity: 0; }
}

.genux-chat-bubble.has-greeting::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #ff6600;
    border-radius: 50%;
    animation: pulse-ring 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}