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

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

.contact-item.active {
    background-color: #f3f4f6;
    border-left: 3px solid #0ea5e9;
}

.message-outgoing {
    background-color: #0ea5e9;
    color: white;
    border-radius: 18px 4px 18px 18px;
}

.message-incoming {
    background-color: #f3f4f6;
    color: #111827;
    border-radius: 4px 18px 18px 18px;
}

#passkey-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

#passkey-button {
    transition: all 0.2s ease-in-out;
}

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

.new-message {
    animation: slideIn 0.3s ease-out forwards;
}