::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

.message {
    padding: 10px 14px;
    border-radius: 14px;
    max-width: 75%;
    font-size: 14px;
    line-height: 1.4;
    animation: fadeIn 0.2s ease;
}

.me {
    background: linear-gradient(to right, #6366f1, #8b5cf6);
    margin-left: auto;
    color: white;
}

.other {
    background: #1e293b;
    color: #e2e8f0;
}

.system {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}