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

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

.chat-item {
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.chat-item:active {
    transform: scale(0.985);
    background-color: #1e2937;
}

.preview-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}