#notificationList{
    max-height: 600px;
    overflow-y: auto;
    top: 66px;
    min-width: 400px;
}

.notification-row{
    display: flex;
    min-width: 260px;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    cursor: pointer;
    padding: 8px 16px;
    align-items: stretch;
}

.notification-row span{
    line-height: 1.5;
}

.notification-row:hover{
    background-color: #f5f5f5;
}

.notification-row:last-child{
    border-bottom: none;
}


.notification-icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: baseline;
}

.notification-icon i{
    font-size: 18px;
    color: #fff;
}

.notification-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    gap: 8px;
}


.notification-title{
    font-weight: 500;
    color: #000;
}

.notification-message {
    color: rgba(46, 38, 61, 0.7);
    font-size: 13px;
}

.notification-date {
    color: rgb(var(--obs-secondary-channel)/ 0.7);
    font-size: 13px;
}

.notification-row .notification-unread-indicator {
    display: none;
}

.notification-row.un-read .notification-unread-indicator {
    display: flex;
}