#fb-notify-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
#fb-notify-icon {
    font-size: 24px;
    position: relative;
}
#fb-notify-count {
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    position: absolute;
    top: -8px;
    right: -8px;
}
#fb-notify-popup {
    display: none;
    position: absolute;
    top: 30px;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 999;
}
#fb-notify-popup ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#fb-notify-popup li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}
#fb-notify-popup li.unread {
    background-color: #f0f8ff;
}
#fb-notify-popup li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
