
/*******************************
* Hlavni CSS styly pro stranku
*******************************/
.OnlineUsers {
}

.OnlineUser-portrait {
    border-radius: 35px;
    width: 70px;
    cursor: pointer;
    box-shadow: 0px 0px 8px skyblue;
    margin-left: -10px;
    margin-top: -12px;
}
.OnlineUser-portrait:first-child {
    margin-left: 1px !important;
}

.OnlineAjaxUser-portrait {
    border-radius: 35px;
    width: 70px;
    cursor: pointer;
    box-shadow: 0px 0px 8px black;
    margin-left: -10px;
    margin-top: -12px;
}
.OnlineAjaxUser-portrait:first-child {
    margin-left: 1px !important;
}


.OnlineUserUser {
    background-color: #4294ff;
    display: inline-block;
    padding: 8px 14px;
    border-radius: 15px;
    font-size: 14px;
    color: white;
    margin: 0px;
}

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

.MessagesForm {
    width: 80%;
    margin: auto;
}

.Messages {
    margin: 5px;
    border-radius: 0px;
    padding: 5px;
    text-align: left;
    font-weight: normal;
    line-height: 1.5;
}

.MessagesTable {
    width: 98%;
}
.MessagesTable tr:last-child .msg-text {
}

.MessagesInputDiv {
    width: 98%;
    text-align: center;
    margin-top: 20px;
}
.MessagesTextarea {
    height: 40px;
    padding: 4px 16px;
    width: 70%;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    text-align: left;
}
.MessagesInput {
    height: 38px;
    padding: 5px;
    margin: 2px;
    cursor: pointer;
    border-radius: 25px;
}
.Message-portrait {
    border-radius: 20px;
    width: 32px;
    cursor: pointer;
}
.MessagesNoMessage {
    font-size: 140%;
    text-align: center;
    color: white;
}
.msg-datetime {
    font-size: 14px;
    font-weight: normal;
    padding: 1px;
    padding-right: 8px;
    white-space: nowrap;
    text-align: right;
}
.msg-user {
    font-size: 14px;
    font-weight: bold;
    color: navy;
    white-space: nowrap;
    text-align: center;
}
.msg-text {
    padding: 1px 2px;
    color: rgba(255,255,255,1);
    text-shadow: 0px 0px 1px black;
    font-weight: 600;
    font-size: 160%;
}


/******************************
* CSS styly pro mobil
*******************************/
@media only screen and (max-width: 1024px) {
    .Messages {
        margin: 35px 0px 0px 0px;
        padding: 0px;
        overflow: auto;
        width: 100%;
        font-weight: bolder;
        font-size: 70%;
    }
    .MessagesTable {
    }
    .MessagesTextarea {
        padding: 4px 8px;
        margin:0;
        min-width: 210px !important;
        background-color: rgba(255, 255, 255, 0.9);
        text-align: left;
        font-size: 80%;
    }
    .MessagesInput {
        height: 28px;
        padding: 4px;
        margin: 8px 0px;
    }
    .Message-portrait {
        border-radius: 14px;
        width: 28px;
    }
    .MessagesForm {
        width: 98%;
    }
    .msg-datetime {
        font-size: 10px;
        white-space: normal;
        padding:0px;
    }
    .msg-user {
        font-size: 11px;
    }
    .msg-text {
    }
    .OnlineUsers {
        padding: 0px;
        margin: 0px;
    }

    .OnlineUser-portrait {
        border-radius: 25px;
        width: 45px;
    }

    .OnlineAjaxUser-portrait {
        border-radius: 25px;
        width: 45px;
    }
    .OnlineUserUser {
        padding: 4px 10px;
}