/* Notification Styles */
.notification-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-delete-btn {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.notification-delete-btn:hover {
    opacity: 1;
    background: rgba(255, 0, 0, 0.1);
}

.notification-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.version-tag {
    font-size: 0.45em;
    opacity: 0.5;
    margin-left: 8px;
    font-weight: normal;
    vertical-align: middle;
}

.mobile-menu-toggle .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 10px;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    padding: 0 4px;
}
