.notification-icon {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: red;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.dropdown-menu {
    width: 350px;
}

.notification-item {
    white-space: normal;
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
}

.notification-item.last-item {
    padding-bottom: 0;
    border-bottom: none;
}


/* last item */
.dropdown-menu > .notification-item:last-child {
    border-bottom: 0;
}   

.notification-title {
    font-weight: bold;
    font-size: 14px;
}

.notification-message {
    font-size: 13px;
}

.notification-date {
    font-size: 11px;
    color: #888;
}


@media screen and (max-width: 768px) {
    .dropdown-menu {
        width: 300px;
    }
    
}