
.message-input {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1;
    filter: drop-shadow(0 0 5px black);
}

.messages-content {
    resize: vertical;
    padding-top: 100px;
    padding-bottom: 100px;
}

.message-content-user {
    right: 0;
    height: fit-content;
    background-color: #62B16E;
    color: white;
    padding: 10px;
    max-width: 72vw;
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,.15));
    border-radius: 15px;
    font-size: 12px;
    word-wrap: break-word;
}

.message-content-reply {
    background-color: white;
    padding: 10px;
    height: fit-content;
    max-width: 72vw;
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,.15));
    border-radius: 15px;
    font-size: 14px;
    word-wrap: break-word;
}

.message-entry-user {
    margin: 10px;
    padding: 5px;
    display: flex;
    justify-content: end;
}

.message-entry-reply {
    margin: 10px;
    display: flex;
}

.message-input-form {
    -webkit-appearance: none;
    border-radius: 0px;
    font-size: 13px;
    width: 100%;
    color:gray;
    max-height: 100px;
    min-height: 50px;
    display: block;
}

.message-action {
    display: flex;
    justify-content: end
}

label.message-action-button {
    border-top-left-radius: 10px;
}

.message-action-button {
    background-color: white;
    color: #62B16E;
    font-size: 25px;
    padding-left: 10px;
    padding-right: 10px;
}

.message-action-button:hover {
    cursor: pointer;
    filter: drop-shadow(0 0 5px black)
}

.image-user-content {
    width: 100%;
    cursor: pointer
}

.attachment-choose {
    opacity: 0;
    width: 0px;
    height: 0px;
}

.attachment-label {
    color:white;
    cursor: pointer;
}

.chat-header {
    position: fixed;
    top: 0;
    z-index: 1;
}

.chat-image {
    width: 65px;
    height: 65px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 50px;
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,.15));
}

.chat-action-button {
    color: white
}

.chat-action-button:hover {
    background-color: #8cb593;
}