div#generalContainer{
    width: 100%;
    height: 100%;
    position: absolute;
    margin: 0 auto;
    padding: 0;
    left: 0;
    right: 0;
    display: flex;
    border: 1px solid red;
}

div#chatListContainer{
    width: 40%;
    display: flex;
    flex-direction: column;
    padding: 5%;
}

div#chatListContainer h3{
    width: 100%;
    text-align: center;

}

div#chatContainer{
    width: 40%;
    padding: 5%;
    display: flex;
    flex-direction: column;
}

ul#chatsList{
    width: 100%;
    list-style: none;
    padding: 0;
    text-align: center;
    max-height: 500px;
    overflow-y: scroll;
}

li.chatListItem{
    width: 100%;
    height: 30px;
    margin-bottom: 5px;
    border-bottom:1px solid #b19c9c;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

li.chatListItem:hover{
    background-color: #b19c9c8f;;
}



/* Chat */

div#chat-window{
    width: 400px;
    height: 400px;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 10px;
    box-shadow: 2px 3px 4px 1px rgb(54, 49, 49);
    text-align: center;
    padding: 5px;
    font-family: 'Open sans',sans-serif;  
    font-style: italic;
    
}

div#chat-window h5{
    width: 100%;
    text-align: center;
    margin-bottom: 0;
}

p#chatDateAndId{
    margin-top: 0;
    font-size: 12px;
    color: rgba(82, 79, 79, 0.788);
}

section#chatMessagesContainer{
    display: flex;
    min-height: 250px;
    max-height: 250px;
    border: 1px solid red;
}


/* Chat menssages */

ul#chatMessages{
    width: 100%;
    margin: 0 0;
    padding: 0%;
    list-style: none;
    font-size: 13px;
    display: flex; flex-direction: column;
    overflow-y: scroll;
}

li.usr_messaje{
    width: 80%;
    float: left;
    text-align: left;
    display: flex;
    margin-bottom: 10px;
}

li.admin_messaje{
    width: 80%;
    margin-left: 15%;
    margin-bottom: 10px;
    color:rgb(141, 141, 80);
    float: right;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

/*  */

div#chat-input-container{
    width: 100%;
    height: 60px;
    margin-top: 10px;
    background-color: white;
    display: flex;
    border-radius: 10px;
    box-shadow: 2px 3px 4px 1px rgb(54, 49, 49);
    padding: 5px;
}

div#chat-input-container textarea{
    border: none;
    width: 80%;
    min-width: 80%;
    max-width: 80%;
    height: 20px;
    max-height: 50px;
    outline: none;
    font-family: 'Open sans',sans-serif; 
    font-size: 11px;
}

div#chat-input-container button{
    border: none;
    width: 20%;
    outline: none;
    background-color: transparent;
    background-color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

div#chat-input-container button:hover{
    color:rgb(29, 175, 119);
}