/* Custom styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* Chat bubbles */
.ai-message {
    border-bottom-left-radius: 0.25rem;
    margin-right: auto;
}

.user-message {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    margin-left: auto;
    border-bottom-right-radius: 0.25rem;
    color: white;
}

/* Wallet action buttons */
.wallet-action-btn {
    width: 100%;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: #a78bfa;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

.wallet-action-btn:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.5);
    color: #c4b5fd;
}

/* Wallet options buttons */
.wallet-option-btn {
    width: 100%;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.5);
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

.wallet-option-btn:hover {
    background: rgba(55, 65, 81, 0.5);
    border-color: rgba(107, 114, 128, 0.5);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* Animation for messages */
@keyframes messageAppear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message {
    animation: messageAppear 0.3s ease-out forwards;
}