
.messages-container {
    width: 100%;
    background-color: #1f2937
}


.messages-container .message-list {
    overflow-y: scroll;
    height: calc(100vh - 188px);
    margin: 5px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 641px) {
    .messages-container .message-list {
        height: calc(100vh - 132px);
    }
}


.messages-container .message-item {
    display: flex;
    color: white;
    padding: 6px 0 6px 0;
    border-radius: 0.5rem;
}

.messages-container .message-item:hover {

    background-color: #293340
}

.message-item-avatar {
    width: 50px;
    padding: 6px;
    margin: 0 0 auto 0;
}

.message-item-avatar img {
    width: 100%
}

.message-item-userName {
    color: #a80000;
    font-weight: 600;
    font-size: 14px;
    padding-right: 10px
}

.message-item-timeDescription {
    font-style: italic;
    font-size: 12px;
}

.message-item-content {

}

.message-item-attachments {

}

.message-item-attachments .btn-fileLink {
    font-size: small;
    color: white;
}



.chat-input-panel {
    position: relative;
    padding: 10px;
}

.chat-input-panel .chat-input {
}

.chat-input-panel .chat-input input {
    background-color: inherit;
    border: 1px solid #ccc;
    color: white;
    box-sizing: border-box;
    border-radius: 4px;
    outline: none;
    padding: 10px;
    width: 100%;
    margin-right: 10px;
}


.chat-input-panel .chat-input-icon {
    color: white;
    width: 30px;
    margin: auto 5px;
    padding: 2px;
    transition: transform 0.2s ease;
    position: absolute;
    top: 17px;
    right: 15px;
    z-index: 1000;
}

.chat-input-panel .chat-input-icon:hover {
    transform: scale(1.2);
    cursor: pointer;
}


.new-message-attachments {
    color: white;
    margin: 5px 0 0 5px;
}



.file-upload-icons-panel {
    display: flex;
    
}



.file-upload-icons-panel .file-upload-icon-file {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

.file-upload-icons-panel .file-upload-icon-file:hover {
    transform: scale(1.2);
    cursor: pointer;
}

.file-upload-icons-panel .file-upload-icon-camera {
    width: 32px;
    height: 32px;
    
}

.file-upload-icons-panel .file-upload-icon-camera:hover {
    transform: scale(1.2);
    cursor: pointer;
}


.chat-input-panel .chat-input-fileUpload {
    color: white;
    width: 70px;
    margin: auto 2px;
    position: absolute;
    top: 17px;
    right: 60px;
    z-index: 1000;
}
