@import url("root.css") screen;

.mainpostmessage {
    padding: 0.0em;
    margin: 0.25em;
    height:700px;
    background: var(--content-bgdcolor) ;
    border-radius: var(--content-border-radius);
    border: 1px solid;
    border-color: var(--content-bordercolor);
    z-index:300;
}


.talkcenter {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    align-items: start;
}


.talkcentermessages {
    flex: 1 1 0%;
    height:550px;
    overflow-y:auto;
    padding:10px;
}
.talkcentermsgtimeself {
    width:60%;
    margin-left:40%;
    margin-top:10px;
    text-align: right;
    font-size:0.8em;
    color: rgb(170, 170, 170);
    background-color:rgba(255, 255, 255, 0.8);
}
.talkcentermsgself {
    width:60%;
    margin-left:40%;
    text-align: left;
    background-color:rgba(255, 255, 255, 0.8);
}


.talkcentermsgtimeuser {
    width: 60%;
    margin-left: 0px;
    margin-top:10px;
    text-align:left;
    font-size:0.8em;
    color: rgb(170, 170, 170);
    background-color: rgba(255, 245, 235, 1.0);
}
.talkcentermsguser {
    width: 60%;
    margin-left: 0px;
    text-align:left;
    background-color: rgba(255, 245, 235, 1.0);
}



.talkcenterformsysteminfo {
    text-align:center;
    margin: 0.5rem 0;
    font-size: var(--font-size-h1);
    font-family: var(--body-font-h);
    font-weight: normal;
}

#talkcentermenuwrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}
#talkcenterwrapper-content {
    display: none;
    position: fixed;
    top: 200px;
    right: 150px;
    width:300px;
    height:200px;
    background-color: rgb(255, 250, 245);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 2201;
}
.talkcenterwrapper-content-infobox {
    display:flex;
    flex-direction: column;
    height:270px;
    font-family: var(--body-font);
    color: var(--content-fontcolor);
    overflow-y: auto;
    z-index: 2301;
}

