.chatContainer{
    display: inline-block;
    position: relative;
    border: 1px solid #035C4D;
    margin-left: 10px;
    margin-bottom: 30px;
}
#messageDiv{
    position:relative;
    width: 600px;
    height: 400px;
    overflow-y: scroll;

}

#buttons{
    position: relative;
    box-sizing: border-box;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    padding: 10px;
}

#inputMessage{
    padding: 5px;
    width: inherit;
    border-radius: 4px 0 0 4px;
    border: 1px solid  #6d8965;
    color: #035C4D;
    border-right: none;
    font-size: 16px;
    margin: 0px;
    height: 50px;
}

#sendMessage{
    background: #035C4D;
    border-radius: 0 4px 4px 0;
    width: 50px;
    height: 50px;
}

.author{
    color: #035C4D;
    font-size: 13px;
    margin-top: 0;
    margin-bottom: 5px;
}

.time{
    font-size: 13px;
    color: #808080;
    margin: 0;
}

.reviews {
    display: flex;
    flex-flow: row wrap;
    margin-top: 10px;
}

.comment {
    max-width: 540px;
}

.comment_text{
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 0;
}

.comment_bubble {
    padding: 15px;
}

.comment_bubble {
    background: #ebebeb;
    position: relative;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin-left: 15px;
    margin-bottom: 10px;
}
.comment_bubble:before {
    content: "";
    position: absolute;
    right: 100%;
    bottom: 25px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-right: 13px solid #ebebeb;
    border-bottom: 12px solid transparent;
}

.messages.right{

}

.messages.right .comment_bubble {
    background: #cde8c9;
    border-radius: 10px;
    margin-right: 15px;
    margin-left: 0;
    margin-bottom: 10px;
}
.messages.right .comment_bubble:before {
    right: -13px;
    border-left: 13px solid #cde8c9;
    border-right: none;
}

.messages.right .reviews {
    margin-left: auto;
    float: right;
}

/*Ne spotknis*/
.messages {
    display: inline-block;
    width: 100%;
}
/************/

.action-btns-div{
    margin-left: 10px;
    margin-bottom: 5px;

}

.btnprocess {
    outline: none;
    background-image: linear-gradient(to top,#036958,#036958) !important;
    color: #fff !important;
    text-shadow: 0 0px 0px rgb(255 255 255 / 75%) !important;
    margin-right: 10px;
    padding: 5px;
    font-size: 14px;
    margin-bottom: 5px;
}

.success{
    background-image: linear-gradient(to top,#036958,#036958) !important;
}

.decline{
    background-image: linear-gradient(to top,#FF564E,#FF564E) !important;
}


#svpModal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    position: relative;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    display: inline-block;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 15px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


.modalTable{
    max-width: min-content;
}

.roleDiv{
    margin: 10px;
}

.roleLabel{
    font-size: 16px;
    padding: 10px;
    color: #035C4D;
    font-weight: bold;
    text-align: end;
}

.roleSelect{
    padding: 5px;
    font-size: 14px;
    color: #035C4D;
    width: 300px;
}

.selectedEmployee{
    font-size: 14px;
    color: #035C4D;
    margin: 8px;
}

.plusMinusButton{
    font-size: 14px;
    color: #fff;
    background-color: #035C4D;
    margin: 5px;
    border-radius: 5px;
}

.sendCancelDiv{
    display: flex;
}

.sendCancelBtn{
    font-size: 14px;
    background-color: #035C4D;
    color: #fff;
    margin: 20px 15px 0 0;
    border-radius: 5px;
    padding: 5px;
}

.preOpenDiv{
    width: auto;
    height: 69%;
    background-color: #f5f5f5;
    position: absolute;
    top: 115px;
    right: 0;
    z-index: 4;
    resize: both;
}

.preOpenHearer{
    font-size: 14px;
    margin: 10px;
    font-weight: bold;
}