/* _content/Quorum/Pages/TempChatPage.razor.rz.scp.css */
/* css for index page */

textarea[b-mhllbswhxz] {
    border: 1px dashed #888;
    border-radius: 5px;
    width: 80%;
    overflow: auto;
    background: #f7f7f7
}

/* improved CSS for speech bubbles */

.received[b-mhllbswhxz], .sent[b-mhllbswhxz] {
    position: relative;
    font-family: arial;
    font-size: 1.1em;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

    .received[b-mhllbswhxz]:after, .sent[b-mhllbswhxz]:after {
        content: '';
        border: 20px solid transparent;
        position: absolute;
        margin-top: -30px;
    }

.sent[b-mhllbswhxz] {
    background: #03a9f4;
    color: #fff;
    margin-left: 10%;
    top: 50%;
    text-align: right;
}

    .sent[b-mhllbswhxz]  .blockquote {
        border-right: solid 4px #333;
        padding: 0 1em;
        margin: 1em;
        font-size: 1.4rem;
        line-height: 1.6em;
    }

.received[b-mhllbswhxz] {
    background: #4CAF50;
    color: #fff;
    margin-left: 10px;
    margin-right: 10%;
}

    .received[b-mhllbswhxz]  .blockquote {
        border-left: solid 4px #333;
        padding: 0 1em;
        margin: 1em;
        font-size: 1.4rem;
        line-height: 1.6em;
    }

.sent[b-mhllbswhxz]:after {
    border-left-color: #03a9f4;
    border-right: 0;
    right: -20px;
}

.received[b-mhllbswhxz]:after {
    border-right-color: #4CAF50;
    border-left: 0;
    left: -20px;
}

/* div within bubble for name */
.user[b-mhllbswhxz] {
    font-size: 0.9em;
    font-weight: bold;
    color: #272727;
}

.timestamp[b-mhllbswhxz] {
    font-size: 0.9em;
    font-weight: normal;
    color: #4e4e4e;
}

/* Deep signifies that both children and parent must have the same css id*/
[b-mhllbswhxz] .msg > *, [b-mhllbswhxz] p {
    margin: 0px;
}

[b-mhllbswhxz] p {
    font-size: 1.3rem;
}
