#edlum_notif_icon {
    position: relative; /* stays in container */
    font-size: 22px;
    cursor: pointer;
    color: #3498db;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#edlum_notif_dot {
    width: 8px;
    height: 8px;
    background: red;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
}

#edlum_notif_dropdown {
    position: absolute; /* dropdown follows icon */
    top: 30px;
    right: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px;
    width: 260px;
    z-index: 99998;
}


#edlum_notif_dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#edlum_notif_dropdown li {
    padding: 8px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

#edlum_notif_dropdown li.unread strong {
    color: #2c3e50;
    font-weight: 600;
}

#edlum_notif_dropdown li.read strong {
    color: #999;
    font-weight: normal;
}

#edlum_notif_popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 100000;
}

.edlum_notif_popup_inner {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

#edlum_notif_close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #555;
}

#edlum_notif_popup_content {
    margin-top: 30px;
}
