﻿#ai-chat-icon {
    position: fixed;
    right: 25px;
    bottom: 105px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #10B981;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99999;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(16,185,129,.45);
}

#ai-chat-container {
    position: fixed;
    right: 25px;
    bottom: 180px;
    width: 360px;
    height: 500px;
    background: #111827;
    border-radius: 20px;
    display: none;
    overflow: hidden;
    z-index: 99999;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 20px 40px rgba(0,0,0,.40);
}

.ai-header {
    background: #10B981;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

#close-ai-chat {
    cursor: pointer;
}

#ai-chat-body {
    padding: 15px;
    height: 330px;
    overflow-y: auto;
    background: #111827;
}

.ai-message {
    background: #1F2937;
    color: white;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.user-msg {
    background: #10B981;
    color: white;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 10px;
    text-align: right;
}

.ai-options {
    padding: 12px;
    background: #111827;
}

    .ai-options button {
        width: 100%;
        margin-bottom: 8px;
        border: none;
        background: #10B981;
        color: white;
        padding: 10px;
        border-radius: 10px;
        cursor: pointer;
    }

        .ai-options button:hover {
            background: #059669;
        }
