﻿.ai-support {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Main AI Button */
.ai-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 26px;
    background: linear-gradient(135deg, #6a5cff, #00d4ff);
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform 0.2s ease;
}

    .ai-button:hover {
        transform: scale(1.1);
    }

.ai-options {
    display: none;
    flex-direction: column;
    margin-bottom: 10px;
    gap: 10px;
}

    .ai-options.show {
        display: flex;
    }

.ai-option {
    background: #0f172a;
    color: white;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
    transition: all 0.2s;
}

    .ai-option:hover {
        background: #2563eb;
    }

    .ai-option.share-btn {
        border: none;
        cursor: pointer;
        text-align: left;
    }
