/* 
====================================================
Messages CSS
====================================================
*/
.message_item{
    padding: 15px;
}

.message_meta{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.message_user{
    /* font-size: 20px; */
}

.message_date{

}

.message_message{

}

/* 
====================================================
   Post css
====================================================
*/

.post{
    display: flex;
    flex-direction: column;
}

.post_name{
    border: none;
    min-height: 20px;
    border-radius: 15px;
    width: 120px;
    padding-left: 10px;
    /* min-width: 120px; */
    margin-bottom: 15px;
}

.post_message{
    border: none;
    min-height: 20px;
    border-radius: 15px;
    padding-left: 10px;
    resize: none;
    margin-bottom: 15px;

}

.post_button{

}

/* 
====================================================
   Error warning thing
====================================================
*/

.error{
    display: flex;
    flex-direction: column;
    height: 75px;
}

.error-item{
    background-color: #e65c5c;
    color: black;
    border-radius: 20px;
    padding: 5px;
    padding-left: 20px;
    margin-bottom: 5px;

}

.error-success{
    background-color: lightgreen;
    color: black;
    border-radius: 20px;
    padding: 5px;
    padding-left: 20px;
    margin-bottom: 5px;
}

