.message {
    background-color: rgb(35, 35, 35);
    width: 100%;
    height: auto;
    border-radius: 10px;
    padding-bottom: 0.5em;
    font-family: NotoSansRegular;
}
.message .text {
    padding-left: 1em;
}
.message .user-box-post {
    display: flex;
    flex-direction: row;
}
.message .user-box-post .username-post {
    padding-left: 1em;
    padding-top: 0.7em;
    padding-bottom: 0.5em;
    font-family: NotoSansBold;
}
.message .user-box-post .profile-picture-post {
    width: 2em;
    height: 2em;
    border-radius: 10px;
    margin-left: 1em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    object-fit: cover;
}

.message-bar {
    position: absolute;
    width: 49vw;
    left: 50%;
    bottom: 0.5vw;
    transform: translate(-50%, 0);
    height: 3em;
    border-radius: 10px;
    border: 1px solid rgb(50,50,50);
    background-color: rgb(35, 35, 35);
}
#message-input {
    position: relative;
    top: -5px;
    width: calc(100% - 7em);
    height: 100%;
    border-width: 0;
    padding: 0;
    margin-left: 3.5em;
    background-color: transparent;
    color: white;
    border-width: 0;
    font-family: NotoSansRegular;
}
#message-input:focus {
    outline: none;
}
#message-send {
    padding: 0;
    border-width: 0;
    border-radius: 100px;
    width: 2.5em;
    height: 2.5em;
    margin-top: 0.5em;
    background-color: rgb(50, 50, 50);
    cursor: pointer;
}
#message-send img {
    width: calc(100% - 0.8em);
    height: calc(100% - 0.8em);
    margin-top: 0.4em;
    margin-left: 0.4em;
}