.notification-wrapper {
    position: relative;
    display: inline-block;
}

.notification-icon {
    cursor: pointer;
    padding: 10px;
    position: relative;
}

.notification-badge {
    background: #ff4d4d;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}

.notification-dropdown {
    display: none;
    position: absolute;
    right: 0;
    width: 300px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.notification-header {
    padding: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.notification-list {
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    display: block;
    color: #333;
    text-decoration: none;
}

.notification-item:hover {
    background: #f9f9f9;
}

.notification-item.unread {
    background: #f0f7ff;
    font-weight: 500;
}

.notification-item.empty {
    text-align: center;
    color: #999;
}

.notification-time {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}