.notification-icon {
    position: relative; 
    cursor: pointer;
    display: inline-block;
}

.unread-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 0 5px;
    font-size: 12px;
}

.unread-count-mobile {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 0 5px;
    font-size: 12px;
}

.notification-list {
    /* padding: 20px; */
    display: none; 
    position: absolute;
    right: 0; 
    top: 100%; 
    background-color: rgb(254, 254, 254);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    width: 240px; 
    max-height: 400px;
    overflow-y: auto;
    z-index: 1050;
    border-radius: 5px; 
}

.notification-list div {
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.notification-list div:last-child {
    border-bottom: none;
}

.notification-list div:hover {
    background-color: #89cc90;
}

.notification-list-mobile {
    /* padding: 20px; */
    display: none; 
    position: absolute;
    right: 0; 
    top: 100%; 
    background-color: rgb(254, 254, 254);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    width: 240px; 
    max-height: 400px;
    overflow-y: auto;
    z-index: 1050;
    border-radius: 5px; 
}

.notification-list-mobile div {
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.notification-list-mobile div:last-child {
    border-bottom: none;
}

.notification-list-mobile div:hover {
    background-color: #89cc90;
}