﻿body {
}

.divChatWindow-Grid {
    width:100%; 
    background-color:transparent;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 100%));
    column-gap: 0px;
    row-gap: 20px;
    justify-content: start;
    margin:0px;
    padding:10px;
    overflow: hidden;
    min-height:600px;
    align-content:start;
    align-items:start;
}


.divChatWindow {
    width: 320px;
    height: 480px;
    background-color: transparent;
    border-bottom: 0px solid gray;
    margin: auto auto;
    padding: 0px 0px 4px 0px;
    overflow: hidden;
}

.divMyMessage {
    width: auto;
    height: auto;
    margin: 5px 30% 5px 0px;
    padding: 5px;
    background-color: bisque;
    border: 1px solid green;
    border-radius: 5px;
}

.divAdminMessage {
    width: auto;
    height: auto;
    margin: 5px 0px 5px 30%;
    padding: 5px;
    background-color: aquamarine;
    border: 1px solid blue;
    border-radius: 5px;
}

.divMessages {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    background-color: transparent;
    background-image: url('https://www.recep.uk/images/brick.jpg');
    background-repeat:repeat;
}


.divAppointment{
    min-height:90px;
    height:auto;
    max-height:auto;
    border:1px solid green;
    border-radius:8px;
    padding:10px 5px;
    background-color:#ffffff;
}


.imgControls {
    width: 30px;
}

.tdControls {
    width: 30px;
    border-bottom: 1px solid gray;
    background-color: #ffffff;
    text-align: right;
    justify-content: center;
    justify-items: center;
}

.tdMessages {
    width: 310px;
    height: 388px;
    border: 0px solid gray;
    background-color: #ffffff;
}

.txtMessage {
    width: 100%;
    height: 90%;
    margin: 0px;
    padding: 5px;
    border: none;
    font-size: 12px;
}

.tdChatName{
    width:100%;
}

.tblChat {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    border: 1px solid gray;
    background-color: #ffffff;
    margin-bottom: 2px;
}



