.new-chat-lives {
    gap:20px;
    align-items: stretch;
}

#chat-container {
    position:relative;
    min-width:300px;
    border:1px solid rgba(255,255,255,0.1);
    border-radius:20px;
}

#chat-container > .flex {
    flex-direction:column;
    position:absolute;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
}

#chat-mensagens {
    flex:1;
    overflow:auto;
}

#chat-form {
    display:flex;
}

#chat-input {
    font-family:inherit;
    background:none;
    border:none;
    flex:1;
    padding: 14px 20px;
    color:var(--dark-grey);
    background:white;
    border-radius:0px 0px 0px 20px;
}

#chat-input[disabled] {
    opacity:0.5
}

#chat-enviar {
    border-radius:0px 0px 20px 0px
}

.chat-msg {
    padding:12px 20px;display:flex;align-items:center;
}

.chat-msg:hover {
    background: rgba(255,255,255,0.05);
}

#chat-header {
    padding:20px 20px 12px;
    border-bottom:1px solid rgba(255,255,255,0.05)
}

#chat-header h3 {
    margin:0px;
    font-size:22px;
    line-height:22px;
    color:var(--yellow);
}

.chat-avatar {width:24px;height:24px;border-radius:50%;margin-right:8px;}

#chat-status {
    background:#4CAF50;
    text-align:center;
    color:white;
    padding:4px;
    font-size:11px;
    margin-top:5px;
}

#chat-status.recusado {background:#F44336}