.events-chat {
    background-color: #F8F9FA;
    width: 300px;
    border-radius: 16px;
}

.chat-card {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

    .chat-card > * {
        margin-bottom: 12px;
    }

        .chat-card > *:last-child {
            margin-bottom: 0;
        }

.chat-header {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 8px;
}

.chat-bot-message {
    background: #bdbdbd;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    color: #4a4a4a;
}

.chat-bot-disabled {
    opacity: .75;
}

.chat-date {
    text-align: center;
    font-size: 12px;
    color: #8a8a8a;
}

.chat-message {
    background: #efefef;
    border-radius: 16px;
    padding: 10px 14px;
    font-size: 14px;
    width: fit-content;
    margin-bottom: 0;
}

.chat-input {
    position: relative;
    margin-top: auto;
    border-radius: 12px;
    background: #fff;
    height: 90px;
}

    .chat-input input {
        position: absolute;
        top: 12px;
        left: 12px;
        right: 12px;
        border: none;
        outline: none;
        font-size: 14px;
        background: transparent;
        color: #a0a0a0;
    }

.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-image: url("../smartPaste/avatar.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
