#MessageListOverlay{
    z-index: 999;
}

#MessageNoItems {

    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 3vh;
    margin: 0 0 20px 0;
    color: rgb(0, 0, 0);
    justify-self: center;
}

#MessageItemsTitle {
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 3vmin;
    margin: 0;
    color: white;
    background: #0672ff;
    width: 100%;
}

#MessageItems {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    overflow-y: scroll;

    border-top-left-radius: 4vh;
    border-bottom-left-radius: 4vh;

    position: relative;
}

.MessageItem {
    position: relative;
    width: 90%;

    border-radius: 20px;
    background: #0672ff;

    transition: all 0.5s;
}

.MessageItem:nth-last-child(1) {
    margin-bottom: 20px;
}

.MessageItem:hover {
    background: #0022b8;
}

.MessageItem:active {
    background: #0093c0;
}

.MessageItemTitle {
    text-align: center;
    position: relative;
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 5vmin;
    margin: 0;
    color: white;
}
.MessageItem:hover .MessageItemTitle{
    color: rgb(255, 255, 255);
}

.MessageItemSubTitle {
    text-align: center;
    position: relative;
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 2vmin;
    margin: 0;
    color: rgb(184, 184, 184);
}
.MessageItem:hover .MessageItemSubTitle{
    color: rgb(255, 255, 255);
}