.chat-agent-enter {
    opacity: 0;
    transform: translateY(20px);
}

.chat-agent-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 300ms, transform 300ms;
}

.chat-agent-exit {
    opacity: 1;
    transform: translateY(0);
}

.chat-agent-exit-active {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 300ms, transform 300ms;
}

.chat-message-user {
    background: linear-gradient(90deg, #00DC82 0%, #0047FF 100%);
    color: white;
    border-radius: 16px 16px 4px 16px;
}

.chat-message-ai {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 16px 16px 16px 4px;
}

.chat-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.chat-input:focus {
    border-color: #00DC82;
    box-shadow: 0 0 0 2px rgba(0, 220, 130, 0.2);
}

.chat-send-button {
    background: linear-gradient(90deg, #00DC82 0%, #0047FF 100%);
    transition: all 0.3s ease;
}

.chat-send-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 220, 130, 0.3);
}

.chat-window-scroll::-webkit-scrollbar {
    width: 6px;
}

.chat-window-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.chat-window-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.chat-window-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}
