#eg-bell {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 20px;
}

#eg-count {
    background: red;
    color: white;
    border-radius: 50%;
    padding: 3px 7px;
    font-size: 12px;
}

#eg-dropdown {
    display: none;
    position: fixed;
    right: 20px;
    top: 60px;
    width: 320px;
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 9999;
}

.eg-header {
    padding: 10px;
    font-weight: bold;
    border-bottom: 1px solid #eee;
}

.eg-item {
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
    cursor: pointer;
}

.eg-item.unread {
    background: #f5faff;
}