﻿.chat {
            background-color: #99CCFF;
            border: thick solid #808080; 
        }

.message{
    background-color: rgba(255, 255, 255, 0.5);
    width: 640px;

}

.scrollableChat{
    height: 600px;
    overflow: auto;
}

.prvtMessage{
   background-color: rgb(182, 255, 0);
   
}


.onlineUsers{
    float: left;
    background-color: #2292f6;
    border: thick solid #808080;
    overflow: auto;

}

.pageHeight{
    height: 700px;
}

td{
    border: 1px solid #000000;
}

ul li{
    cursor: crosshair;
}

#message {
    width: 400px;
}



/*--------------------------------------------------------------------------------POPUP FORM------------------------------------------------------*/
.modal {
    
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.notVisible{
    display: none;
}

.visible{
    display: block;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 350px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.5s;
    animation-name: animatetop;
    animation-duration: 0.5s
}

@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}


.modal-header {
    padding: 2px 16px;
    background-color: blue;
    color: white;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
    padding: 2px 16px;
    background-color: blue;
    color: white;
}
