/* CIE Frontend Styles – Smart Prompts & Personalization */

.cie-prompt-bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999999;
    background: #13151c;
    border: 1px solid #2a2e3e;
    border-left: 3px solid #6c63ff;
    border-radius: 10px;
    padding: 14px 18px;
    max-width: 300px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #e8eaf0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    animation: cie-bubble-in 0.35s cubic-bezier(0.16,1,0.3,1);
    cursor: pointer;
}

.cie-prompt-bubble.cie-prompt-exit { animation: cie-bubble-out 0.25s ease forwards; }

.cie-prompt-close {
    position: absolute;
    top: 6px; right: 10px;
    background: none; border: none;
    color: #7b8198; font-size: 16px;
    cursor: pointer; padding: 0;
    line-height: 1;
}

.cie-prompt-close:hover { color: #e8eaf0; }

@keyframes cie-bubble-in  { from { opacity: 0; transform: translateY(16px) scale(0.95); } to { opacity: 1; transform: none; } }
@keyframes cie-bubble-out { to   { opacity: 0; transform: translateY(16px) scale(0.95); } }
