/* AI Assistant Float Button */
.ai-assistant-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.ai-assistant-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #103474, #FFC107);
    border: none;
    box-shadow: 0 4px 15px rgba(16, 52, 116, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.ai-assistant-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(16, 52, 116, 0.6);
}

.ai-assistant-btn i {
    color: white;
    font-size: 24px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(16, 52, 116, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 193, 7, 0.6);
    }
}

.ai-assistant-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    white-space: nowrap;
    font-size: 14px;
    display: none;
}

.ai-assistant-float:hover .ai-assistant-tooltip {
    display: block;
}

