.notification-bell-container {
    position: fixed;
    top: 60px;
    right: 90px;
    z-index: 9999;
}

.notification-bell {
    position: relative;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-bell .dashicons-bell {
    font-size: 20px;
    color: #333;
}

.notification-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-panel {
    position: absolute;
    top: 50px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: none;
    max-height: 400px;
    overflow: hidden;
}

.notification-panel.show {
    display: block;
}

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

.notification-header h3 {
    margin: 0;
    flex: 1;
}

.notification-actions {
    display: flex;
    gap: 5px;
}

.mark-all-read,
.clear-all-notifications {
    background: #0073aa;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.clear-all-notifications {
    background: #dc3545;
}

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

.notification-item {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    position: relative;
}

.notification-item.unread {
    background: #f8f9fa;
}

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

.notification-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
    padding-right: 20px;
    font-size: 14px;
}

.notification-content {
    color: #666;
    font-size: 13px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.notification-time {
    font-size: 11px;
    color: #999;
}

.delete-notification {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delete-notification:hover {
    color: #c82333;
}

.no-notifications {
    padding: 20px;
    text-align: center;
    color: #999;
}

.notification-footer {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #eee;
}

.load-more {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
    color: #666;
}

.load-more:hover {
    background: #f5f5f5;
}

.notification-item-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.notification-item-link:hover {
    text-decoration: none;
    color: inherit;
}