body{
    background-color: #3B4048;
    color: white;
}

.namespaces{
    background-color: #BED9D4;
    min-height: 100vh;
    color: #ABB2BF;
    text-align: center;
}

.namespaces img{
    margin-top: 10px;
    background-color: #ABB2BF;
    border-radius: 10px;
    cursor: pointer;
    width:60px;
}

ul.namespace {
    padding: 0;
    margin-top: 20px;
}

.room-list{
    padding-left: 0px;
}

.room-list li{
    cursor: pointer;
    list-style-type: none;
    padding: 0px 15px;
    margin-top: 8px;

}

.room-list li span{
    margin-right: 5px;
}

.room-list li.active{
    background-color: #61AFEF;
    color: #fff
}

.rooms{
    background: #F5E9C0;
    min-height: 100vh;
    color: black;
    text-align: center; 
}


.chat-panel{
    background-color: #fff;
    min-height: 100vh;
    position: relative;
    padding-top: 10px;
}
.chat-panel .curr-room-text{
    color: #282c34;
    font-size: 26px;
}
.curr-room-num-users, .search{
    font-size: 14px;
    color: #ABB2BF;
    position: realtive;
}

.search{
    margin-top: 5px;
}

.search span{
    position: absolute;
    left: 25px;
    top: 10px;
}

.search input{
    padding-left: 30px;
}

.message-form { 
    margin: 0px; margin-bottom: 10px;
    position: absolute;
    bottom: 0;
    width: 98%
}
input { 
    width: 100%; 
    height: 34px; 
    color: #ABB2BF; 
    border: 1px solid #3B4048; 
    border-radius: 5px;
    padding-left: 5px;
}
#messages { 
    list-style-type: none; margin: 0; padding: 0; 
    color: #3B4048;
    max-height: 85%;
    overflow: auto;
    margin-top: 20px;

}

#messages li .user-message{
    margin-left: 10px;
    color: #222;
}

#messages li .user-name-time span{
    color: #ABB2BF;
}

#messages li { 
    padding: 5px 10px; 
    display: flex;
    align-items: stretch;
}

.time {
    padding-left: 5px;
}





