#notification_section{
    text-align: right;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 400px;
    min-height: 100px;
}
.content_area{
    text-align: left;
    position: absolute;
    width: 300px;
    height: 400px;
    overflow-y: scroll;
    background-color: white;
    margin-top: 5px;
    top: 30px;
    right: 15px;
    border-radius: 5px;
    padding: 0px;
    padding-top: 10px;
}
.content_area_overflow{
    min-height: 450px;
}
/**SCROLL STYLE*/
.content_area::-webkit-scrollbar {
    width: 7px;
    background-color: #F5F5F5;
    border-radius: 5px;
}
.content_area::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(0,0,0,0.1);
    border: 1px solid #ccc;
}

.content_area::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #999999;
    border: 1px solid #aaa;
}

.content_area::-webkit-scrollbar-thumb:hover {
    background: #bfbfbf;
}

.content_area::-webkit-scrollbar-thumb:active {
    background: linear-gradient(left, #22ADD4, #1E98BA);
}

.notifikasi-kosong {
    padding: 2px 6px;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: bolder;
    text-align: center;
    color: black;
    background: white;
    margin: 0px 2px;
    border-radius: 10px;
}
/*chat css*/
#chatArea{
    overflow-wrap: break-word;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 35px;
}
#messageForm{
    position: fixed;
    top: 424px;
    right: 50px;
    max-width: 281px;
}
#messageForm input {
    width: 240px;
}

.chat-username{
    color: #24af35;
    text-transform: lowercase;
}

.chat-join{
    color: #3c3ffc;
}

.chat-leave{
    color: #f25129;
}