.chat-app.online {
    width: 100%;
    height: 30px;
    border-radius: 7px 0px 0px 0px;
    border-bottom: 3px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;

}

.chat-app.online .indicator {
    width: 1rem;
    height: 1rem;
    border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
    background-color: #e74c3c;
    opacity: 0%;
    transition: opacity 0.7s ease;
}

.chat-app.online .indicator-text {
    opacity: 0%;
    margin-left: 0.5rem;
    color: white;
    transition: opacity 0.7s ease;
}